Skip to content

Commit c0828dd

Browse files
committed
Use ninja instead
1 parent 846807e commit c0828dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ jobs:
8484
- name: configure cmake
8585
run: |
8686
nix-shell --argstr compiler ${{ matrix.compiler }} --run "
87-
cd build && cmake .. \
87+
cd build && cmake -GNinja .. \
8888
-DCMAKE_BUILD_TYPE=${{ matrix.type }} \
8989
-DENABLE_COVERAGE=${{ contains(matrix.opts, 'coverage') }}
9090
"
91-
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "cd build && make check -j`nproc`"
91+
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "cd build && ninja check"
9292
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "bash <(curl -s https://codecov.io/bash)"
9393
if: ${{ contains(matrix.opts, 'coverage') }}

0 commit comments

Comments
 (0)