mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-31 22:21:13 +02:00
Run CI builds with parallel flags
This commit is contained in:
parent
1dc64084eb
commit
7ae42de08b
4 changed files with 4 additions and 4 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: configure
|
- name: configure
|
||||||
run: cmake -Htest -Bbuild
|
run: cmake -Htest -Bbuild -GNinja
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: cmake --build build --config Debug
|
run: cmake --build build --config Debug
|
||||||
|
|
2
.github/workflows/standalone.yml
vendored
2
.github/workflows/standalone.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: configure
|
- name: configure
|
||||||
run: cmake -Hstandalone -Bbuild
|
run: cmake -Hstandalone -Bbuild -GNinja
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: cmake --build build
|
run: cmake --build build
|
||||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: configure
|
- name: configure
|
||||||
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
|
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1 -GNinja
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: cmake --build build --config Debug
|
run: cmake --build build --config Debug
|
||||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
run: cmake -Htest -Bbuild
|
run: cmake -Htest -Bbuild
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: cmake --build build --config Debug
|
run: cmake --build build --config Debug -j4
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue