From 4663e94031635f41fb9e5658d88d43718bdf17d2 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Mon, 1 Mar 2021 16:17:46 +0000 Subject: [PATCH] github: Log the results of the non-containerized tests Log the results of the non-containerized tests. The non-containerized tests will be automatically invoked by `make check`. Signed-off-by: Tom Hromatka --- .github/workflows/continuous-integration.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index f4d53634..e70b170d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,7 +1,7 @@ # # Continuous Integration Workflow for libcgroup # -# Copyright (c) 2020 Oracle and/or its affiliates. +# Copyright (c) 2020-2021 Oracle and/or its affiliates. # Author: Tom Hromatka # @@ -67,7 +67,9 @@ jobs: run: make check - name: Display test logs if: ${{ always() }} - run: cat tests/ftests/ftests.sh.log + run: | + cat tests/ftests/ftests.sh.log + cat tests/ftests/ftests-nocontainer.sh.log - name: Archive test logs if: ${{ always() }} uses: actions/upload-artifact@v2 @@ -110,7 +112,9 @@ jobs: run: make check - name: Display test logs if: ${{ always() }} - run: cat tests/ftests/ftests.sh.log + run: | + cat tests/ftests/ftests.sh.log + cat tests/ftests/ftests-nocontainer.sh.log - name: Archive test logs if: ${{ always() }} uses: actions/upload-artifact@v2 -- 2.47.2