Skip to content

Commit

Permalink
ci: be sure to run all tests (in case we forget to add suites)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 26, 2024
1 parent bfa8cb8 commit c71aa4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,12 +399,11 @@ jobs:
- name: meson test
working-directory: iguana_build
run: |
[ "${{ matrix.id }}" = "thread-sanitizer" ] && test_suite='multithreading' || test_suite='single_threaded'
if [ "${{ env.verbose_test }}" = "true" ]; then
[ ${{ inputs.runner }} = "macos-latest" ] && stdbuf_cmd=gstdbuf || stdbuf_cmd=stdbuf
$stdbuf_cmd -o0 meson test --print-errorlogs --verbose --no-stdsplit --suite $test_suite
$stdbuf_cmd -o0 meson test --print-errorlogs --verbose --no-stdsplit
else
meson test --print-errorlogs --suite $test_suite
meson test --print-errorlogs
fi
### run benchmarks
- name: benchmark algorithms
Expand Down

0 comments on commit c71aa4c

Please sign in to comment.