]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Show test logs from CUPS API unit tests, too.
authorMichael R Sweet <msweet@msweet.org>
Thu, 28 Aug 2025 14:59:37 +0000 (10:59 -0400)
committerMichael R Sweet <msweet@msweet.org>
Thu, 28 Aug 2025 14:59:37 +0000 (10:59 -0400)
.github/workflows/build.yml

index 9425d49df1448a77afb44347dfbc7afe9ec0f62b..49461d037f786f25f3192a3d07e4a5c79ad9c23e 100644 (file)
@@ -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: