mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
github: Don't accidentally suppress test errors
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 <david@gibson.dropbear.id.au>
This commit is contained in:
parent
057a7dbbb7
commit
ae97d97458
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue