Skip to content

Commit

Permalink
fix calls to cmake --build in the build_and_test github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbartholomew committed Feb 7, 2024
1 parent 7bb92ae commit a1f55ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Build (make all)
working-directory: ${{github.workspace}}/build
run: |
cmake -B "${{github.workspace}}/build" --build
cmake --build "${{github.workspace}}/build"
- name: Test (./tests.sh)
run: |
cmake -B "${{github.workspace}}/build" --build --target run_tests
cmake --build "${{github.workspace}}/build" --target run_tests

0 comments on commit a1f55ac

Please sign in to comment.