Skip to content

Commit

Permalink
Use ninja instead
Browse files Browse the repository at this point in the history
  • Loading branch information
arximboldi committed Sep 17, 2024
1 parent 846807e commit c0828dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
- name: configure cmake
run: |
nix-shell --argstr compiler ${{ matrix.compiler }} --run "
cd build && cmake .. \
cd build && cmake -GNinja .. \
-DCMAKE_BUILD_TYPE=${{ matrix.type }} \
-DENABLE_COVERAGE=${{ contains(matrix.opts, 'coverage') }}
"
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "cd build && make check -j`nproc`"
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "cd build && ninja check"
- run: nix-shell --argstr compiler ${{ matrix.compiler }} --run "bash <(curl -s https://codecov.io/bash)"
if: ${{ contains(matrix.opts, 'coverage') }}

0 comments on commit c0828dd

Please sign in to comment.