Skip to content

Commit ade1c9e

Browse files
committed
Fix number of parallel tasks on MacOS builds in CI
'nproc' is unrecognized command on MacOS
1 parent 9363574 commit ade1c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,4 +381,4 @@ jobs:
381381
-DUR_FORMAT_CPP_STYLE=ON
382382
-DUMF_ENABLE_POOL_TRACKING=ON
383383
- name: Build
384-
run: cmake --build ${{github.workspace}}/build -j $(nproc)
384+
run: cmake --build ${{github.workspace}}/build -j $(sysctl -n hw.logicalcpu)

0 commit comments

Comments
 (0)