diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-03 14:44:53 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-03 14:44:53 +0200 |
commit | ad392b343a59c6bd093a2bd352598f6e7747828e (patch) | |
tree | 6ffae3aaec4b6a4d664aca55f0252a3e80909e29 /.github/workflows/ci.yml | |
parent | 535e735102fd6638296a56f5bb620a7ca5db3fd5 (diff) | |
download | sciteco-ad392b343a59c6bd093a2bd352598f6e7747828e.tar.gz |
ci.yml: run the test suite in verbose mode - we've got nothing but the Github logs when it fails
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
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 |