Skip to content

Commit

Permalink
Add ctest output_on_failure option to macOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
timhutton committed Jun 10, 2024
1 parent 5eff20e commit d54408b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:
# Run the full suite of tests since OpenCL is available
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -C ${{matrix.build_type}}
run: ctest --output-on-failure -C ${{matrix.build_type}}

- name: Test (without OpenCL)
if: matrix.build_type == 'Debug'
# Run a restricted suite of tests (OpenCL is available but the tests are slow on Debug)
shell: bash
working-directory: ${{runner.workspace}}/build
run: ctest -R rdy -C ${{matrix.build_type}}
run: ctest --output-on-failure -R rdy -C ${{matrix.build_type}}

0 comments on commit d54408b

Please sign in to comment.