Skip to content

Commit

Permalink
fix threads detection
Browse files Browse the repository at this point in the history
  • Loading branch information
mixa3607 committed Mar 10, 2024
1 parent 4b57b89 commit 22e3409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGIT_REF_NAME=${{github.ref_name}} -DGIT_SHA=${{github.sha}} -B ${{github.workspace}}/build
- name: Build
working-directory: "./build"
run: cmake --build . --config Release -j %NUMBER_OF_PROCESSORS%
run: cmake --build . --config Release -j (Get-CimInstance -ClassName Win32_Processor | Measure-Object -Property NumberOfLogicalProcessors -Sum).Sum

- name: Dist
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 22e3409

Please sign in to comment.