# HG changeset patch # User Markus Mützel # Date 1626277330 -7200 # Node ID 35155423c0efe4f40dd6e1899de716e65071ffbc # Parent dbc191149841f9456863b76b8c29bd7b5dbf9e08 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. diff -r dbc191149841 -r 35155423c0ef .github/workflows/make.yaml --- 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