1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

Run CI builds with parallel flags

This commit is contained in:
Lars Melchior 2020-04-14 14:00:39 +02:00
parent 1dc64084eb
commit 7ae42de08b
4 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild
run: cmake -Htest -Bbuild -GNinja
- name: build
run: cmake --build build --config Debug

View file

@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- name: configure
run: cmake -Hstandalone -Bbuild
run: cmake -Hstandalone -Bbuild -GNinja
- name: build
run: cmake --build build

View file

@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1 -GNinja
- name: build
run: cmake --build build --config Debug

View file

@ -17,7 +17,7 @@ jobs:
run: cmake -Htest -Bbuild
- name: build
run: cmake --build build --config Debug
run: cmake --build build --config Debug -j4
- name: test
run: |