Skip to content

Commit

Permalink
Update build so test output better info on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinzii committed Feb 26, 2024
1 parent 60972e1 commit 67b39e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: build clang
run: cmake --build clang --config=Release
- name: test
run: cd build && ctest -C Release
run: cd build && ctest -C Release --output-on-failure

build-windows:
runs-on: windows-latest
Expand All @@ -34,7 +34,7 @@ jobs:
- name: build
run: cmake --build build --config=Release
- name: test
run: cd build && ctest -C Release
run: cd build && ctest -C Release --output-on-failure

build-macos:
runs-on: macos-13
Expand All @@ -55,4 +55,4 @@ jobs:
- name: build clang
run: cmake --build clang --config=Release
- name: test
run: cd build && ctest -C Release
run: cd build && ctest -C Release --output-on-failure

0 comments on commit 67b39e6

Please sign in to comment.