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:
parent
7ae42de08b
commit
d0dece327b
4 changed files with 7 additions and 7 deletions
2
.github/workflows/install.yml
vendored
2
.github/workflows/install.yml
vendored
|
@ -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: |
|
||||||
|
|
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -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: |
|
||||||
|
|
4
.github/workflows/standalone.yml
vendored
4
.github/workflows/standalone.yml
vendored
|
@ -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
|
||||||
|
|
4
.github/workflows/ubuntu.yml
vendored
4
.github/workflows/ubuntu.yml
vendored
|
@ -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: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue