changeset 29881:35155423c0ef

GitHub-CI: Display fntests.log in separate step. * .github/workflows/make.yaml (ubuntu, macos): Display fntests.log in separate step. That makes it easier to find the test statistics in the logs.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 14 Jul 2021 17:42:10 +0200
parents dbc191149841
children 38c47f8f7cd6
files .github/workflows/make.yaml
diffstat 1 files changed, 15 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Wed Jul 14 17:33:02 2021 +0200
+++ b/.github/workflows/make.yaml	Wed Jul 14 17:42:10 2021 +0200
@@ -121,7 +121,13 @@
         timeout-minutes: 60
         env:
           XDG_RUNTIME_DIR: "/home/runner/tmp"
-        run: xvfb-run -a make -C ./.build check V=1 | tee ./test-suite.log
+        run: xvfb-run -a make -C ./.build check | tee ./test-suite.log
+        
+      - name: display test log
+        continue-on-error: true
+        # Displaying the log shouldn't take long. Cancel the step if it does.
+        timeout-minutes: 5
+        run: cat ./.build/test/fntests.log
 
       - name: analyze test suite results
         # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION"
@@ -263,7 +269,13 @@
         # automatically.
         continue-on-error: true
         timeout-minutes: 60
-        run: make -C ./.build check V=1
+        run: make -C ./.build check
+
+      - name: display test log
+        continue-on-error: true
+        # Displaying the log shouldn't take long. Cancel the step if it does.
+        timeout-minutes: 5
+        run: cat ./.build/test/fntests.log
 
 
   windows:
@@ -449,7 +461,7 @@
           rem Start Octave and run test suite
           octave-gui --eval "__run_test_suite__"
 
-      - name: display test results
+      - name: display test log
         continue-on-error: true
         # Displaying the log shouldn't take long. Cancel the step if it does.
         timeout-minutes: 5