From: Michael R Sweet Date: Thu, 28 Aug 2025 14:59:37 +0000 (-0400) Subject: Show test logs from CUPS API unit tests, too. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bfad04b1bb18c3bd112d1cf7f920c71b29d2a30;p=thirdparty%2Fcups.git Show test logs from CUPS API unit tests, too. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9425d49df1..49461d037f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: - name: Build CUPS run: make - name: Test CUPS - run: make test || cat test/error_log* + run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*) build-linux-i386: @@ -57,7 +57,7 @@ jobs: - name: Build CUPS run: make - name: Test CUPS - run: make test || cat test/error_log* + run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*) build-macos: @@ -75,7 +75,7 @@ jobs: - name: Build CUPS run: make - name: Test CUPS - run: make test || cat test/error_log* + run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*) build-windows: