[Chore] (workflow): let's build with all the cores available

This commit is contained in:
2025-08-25 16:04:31 +08:00
parent 281a28f901
commit c8e46fb6e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
- name: Build
working-directory: ${{env.BENCH_ROOT}}/build-bench
run: cmake --build . --parallel 4
run: cmake --build . --parallel ${nproc}
- name: Benchmark
working-directory: ${{env.BENCH_ROOT}}/build-bench
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
- name: Build
working-directory: ${{env.TEST_ROOT}}/build-test
run: cmake --build . --parallel 4
run: cmake --build . --parallel ${nproc}
- name: Test
working-directory: ${{env.TEST_ROOT}}/build-test