From 176753c215af11db0096664c8c804544f72e049f Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Wed, 23 Dec 2020 11:12:39 -0700 Subject: [PATCH] github: Always display test logs Always display the test logs in the github actions GUI. Signed-off-by: Tom Hromatka --- .github/workflows/continuous-integration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e6c68c6d..f4d53634 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -39,6 +39,7 @@ jobs: make check popd - name: Display test logs + if: ${{ always() }} run: cat tests/gunit/test-suite.log - name: Collate code coverage results run: lcov -d . -c > lcov.info @@ -65,6 +66,7 @@ jobs: - name: Run functional tests run: make check - name: Display test logs + if: ${{ always() }} run: cat tests/ftests/ftests.sh.log - name: Archive test logs if: ${{ always() }} @@ -107,6 +109,7 @@ jobs: - name: Run functional tests run: make check - name: Display test logs + if: ${{ always() }} run: cat tests/ftests/ftests.sh.log - name: Archive test logs if: ${{ always() }} -- 2.47.2