mirror of
https://github.com/nlohmann/json
synced 2025-01-15 11:40:05 +00:00
👷 parallelize builds
This commit is contained in:
parent
6e59c8301a
commit
77e0ba8750
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
@ -12,6 +12,6 @@ jobs:
|
||||
- name: cmake
|
||||
run: cmake -S . -B build
|
||||
- name: build
|
||||
run: cmake --build build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
run: cd build ; ctest -j 10
|
||||
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
@ -12,6 +12,6 @@ jobs:
|
||||
- name: cmake
|
||||
run: cmake -S . -B build
|
||||
- name: build
|
||||
run: cmake --build build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
run: cd build ; ctest -j 10
|
||||
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
@ -12,6 +12,6 @@ jobs:
|
||||
- name: cmake
|
||||
run: cmake -S . -B build -G "Visual Studio 16 2019"
|
||||
- name: build
|
||||
run: cmake --build build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
run: cd build ; ctest -j 10
|
||||
run: cd build ; ctest -j 10 -C Release
|
||||
|
Loading…
Reference in New Issue
Block a user