From 79113ecb8893fdd65fe96962d2417813976079ed Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Sun, 2 Aug 2026 21:57:06 -0400 Subject: [PATCH] Run valgrind in arm64 release in CI --- .gitea/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index aa19795..038e7e4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -185,12 +185,7 @@ jobs: - name: Test run: | cd build - # On arm64, valgrind needs the MAKE_MEM_DEFINED client requests for - # https://git.weaselab.dev/weaselab/conflict-set/issues/39, but this - # build has -DNVALGRIND, which compiles them out. Skip valgrind - # tests here; they run annotated in the test job. - ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 ${{ matrix.arch == 'arm64' && '-E valgrind' || '' }} -T Test -j "$(nproc)" --timeout 90 > /dev/null - + ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 -T Test -j "$(nproc)" --timeout 90 > /dev/null - name: Package run: | cd build