summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hansen <rhansen@rhansen.org>2023-04-21 01:38:20 -0400
committerRobert Ancell <robert.ancell@gmail.com>2023-04-26 09:33:47 +1200
commitc2ee2b96eeb880ab5b463e8cbef940bcfc0fa661 (patch)
treea7f856aed47a557971934da58313363a6de81682
parent581c3f9e40999b2eeff7fc57abae4588fa307708 (diff)
downloadlightdm-git-c2ee2b96eeb880ab5b463e8cbef940bcfc0fa661.tar.gz
ci: Print test logs on failure
This makes the errors much easier to find vs. downloading the zip artifact and extracting it.
-rw-r--r--.github/workflows/test.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index e8f08672..fbe32f18 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -36,7 +36,7 @@ jobs:
run: |
./autogen.sh --disable-silent-rules --enable-gtk-doc
make
- make check DEBUG=true
+ make check DEBUG=true || { cat tests/test-suite.log >&2; exit 1; }
- name: Upload Test Log
if: failure()