👷 parallelize builds

parent 6e59c830
...@@ -12,6 +12,6 @@ jobs: ...@@ -12,6 +12,6 @@ jobs:
- name: cmake - name: cmake
run: cmake -S . -B build run: cmake -S . -B build
- name: build - name: build
run: cmake --build build run: cmake --build build --parallel 10
- name: test - name: test
run: cd build ; ctest -j 10 run: cd build ; ctest -j 10
...@@ -12,6 +12,6 @@ jobs: ...@@ -12,6 +12,6 @@ jobs:
- name: cmake - name: cmake
run: cmake -S . -B build run: cmake -S . -B build
- name: build - name: build
run: cmake --build build run: cmake --build build --parallel 10
- name: test - name: test
run: cd build ; ctest -j 10 run: cd build ; ctest -j 10
...@@ -12,6 +12,6 @@ jobs: ...@@ -12,6 +12,6 @@ jobs:
- name: cmake - name: cmake
run: cmake -S . -B build -G "Visual Studio 16 2019" run: cmake -S . -B build -G "Visual Studio 16 2019"
- name: build - name: build
run: cmake --build build run: cmake --build build --parallel 10
- name: test - name: test
run: cd build ; ctest -j 10 run: cd build ; ctest -j 10 -C Release
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment