From ad392b343a59c6bd093a2bd352598f6e7747828e Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Thu, 3 Jun 2021 14:44:53 +0200 Subject: ci.yml: run the test suite in verbose mode - we've got nothing but the Github logs when it fails --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76db039..db8d080 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,10 @@ jobs: run: xvfb-run -a make - name: make install run: sudo xvfb-run -a make install + # NOTE: The test suite must be run in verbose mode because if it fails + # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: xvfb-run -a make check + run: xvfb-run -a make check TESTSUITEFLAGS="--verbose" - name: Build Developer Documentation run: cd doc && make devdoc # FIXME: Will try to perform an out-of-tree build which will not @@ -77,8 +79,10 @@ jobs: - run: make - run: make install + # NOTE: The test suite must be run in verbose mode because if it fails + # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check + run: make check TESTSUITEFLAGS="--verbose" - name: Build Developer Documentation run: cd doc && make devdoc # FIXME: Will try to perform an out-of-tree build which will not -- cgit v1.2.3