From c2ee2b96eeb880ab5b463e8cbef940bcfc0fa661 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Fri, 21 Apr 2023 01:38:20 -0400 Subject: ci: Print test logs on failure This makes the errors much easier to find vs. downloading the zip artifact and extracting it. --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.1