diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-30 14:36:08 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-30 14:36:08 +0300 |
commit | 8470d478409b66410170b063286ffe8c7124a764 (patch) | |
tree | d9c7e160e589af8e16afe119e04f3a2c6d87b279 | |
parent | c3c30639034c3f88e684748f7cc90aa2a0aa3049 (diff) | |
download | sciteco-8470d478409b66410170b063286ffe8c7124a764.tar.gz |
CI: disabled Valgrind altogether
* Apparently it's not possible to run it as part of CI.
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 933657a..d42585a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: # NOTE: macOS already ships with ncurses and # XCode already comes with the autotools. - name: Install Build Dependencies - run: brew install autoconf automake libtool glib groff doxygen valgrind + run: brew install autoconf automake libtool glib groff doxygen - name: Configure Build env: # Make sure we don't pick up GCC by accident. @@ -81,7 +81,7 @@ jobs: # 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 TESTSUITEFLAGS="--verbose --valgrind" + run: make check TESTSUITEFLAGS="--verbose" - name: Build Developer Documentation run: cd doc && make devdoc - run: make distcheck |