1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-01 06:30:52 +02:00

Ninja is unavailable. Fallback to -j4

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

View file

@ -23,7 +23,7 @@ jobs:
run: cmake -Htest -Bbuild -DTEST_INSTALLED_VERSION=1 run: cmake -Htest -Bbuild -DTEST_INSTALLED_VERSION=1
- name: build - name: build
run: cmake --build build --config Debug run: cmake --build build --config Debug -j4
- name: test - name: test
run: | run: |

View file

@ -14,10 +14,10 @@ jobs:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: configure - name: configure
run: cmake -Htest -Bbuild -GNinja 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: |

View file

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

View file

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