From: Tom Hromatka Date: Wed, 23 Dec 2020 18:12:39 +0000 (-0700) Subject: github: Always display test logs X-Git-Tag: v2.0.rc1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=176753c215af11db0096664c8c804544f72e049f;p=thirdparty%2Flibcgroup.git github: Always display test logs Always display the test logs in the github actions GUI. Signed-off-by: Tom Hromatka --- 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() }}