We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc923bb commit 5afac78Copy full SHA for 5afac78
2 files changed
.github/workflows/build.yml
@@ -27,5 +27,5 @@ jobs:
27
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
28
29
- name: Build
30
- run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
+ run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j$(nproc --all)
31
.github/workflows/utests.yml
@@ -27,7 +27,7 @@ jobs:
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DLIBSCRATCHCPP_BUILD_UNIT_TESTS=ON
32
- name: Run unit tests
33
run: ctest --test-dir build -V
0 commit comments