Skip to content

Commit

Permalink
github: Don't accidentally suppress test errors
Browse files Browse the repository at this point in the history
The last commit, displaying the meson testlog if we fail tests had the
accidentaly side effect of not propagating the failure to show up properly
in github's dashboard.  Fix that.

Signed-off-by: David Gibson <[email protected]>
  • Loading branch information
dgibson committed Mar 6, 2024
1 parent 057a7db commit ae97d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
run: meson compile -C build

- name: Run check
run: meson test -C build || cat build/meson-logs/testlog.txt
run: if ! meson test -C build; then cat build/meson-logs/testlog.txt; false; fi

0 comments on commit ae97d97

Please sign in to comment.