We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf2ea5 commit 064f990Copy full SHA for 064f990
.github/actions/Miscellaneous/Select_Default_Build_Type/action.yml
@@ -12,9 +12,9 @@ runs:
12
echo "CODE_COVERAGE=0" >> $GITHUB_ENV
13
os="${{ matrix.os }}"
14
if [[ "${os}" != "macos"* ]]; then
15
- echo "ncpus=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
+ echo "ncpus=$(nproc --all)" >> $GITHUB_ENV
16
else
17
- echo "ncpus=$(nproc --all)" >> $GITHUB_ENV
+ echo "ncpus=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
18
fi
19
20
- name: Select default build type on Windows
0 commit comments