From ca73827d1ff7cbb0279fe4f0770480bac3f1caa2 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Thu, 17 Dec 2020 11:24:13 -0700 Subject: [PATCH] github: Display ftests.sh.log in the CI GUI Now that we invoke ftests.sh in the functional tests' Makefile.am, test-suite.log isn't that useful. Display ftests.sh.log in the Github Actions GUI since ftests.sh.log contains pass/fail info for each test. Signed-off-by: Tom Hromatka --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 634a9f55..e6c68c6d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -65,7 +65,7 @@ jobs: - name: Run functional tests run: make check - name: Display test logs - run: cat tests/ftests/test-suite.log + run: cat tests/ftests/ftests.sh.log - name: Archive test logs if: ${{ always() }} uses: actions/upload-artifact@v2 @@ -107,7 +107,7 @@ jobs: - name: Run functional tests run: make check - name: Display test logs - run: cat tests/ftests/test-suite.log + run: cat tests/ftests/ftests.sh.log - name: Archive test logs if: ${{ always() }} uses: actions/upload-artifact@v2 -- 2.47.2