From 7e031eeff0a3d75b7a79a38490082afa0c583cb7 Mon Sep 17 00:00:00 2001 From: firewave Date: Tue, 6 Feb 2024 17:56:30 +0100 Subject: [PATCH] valgrind.yml: temporarily disabled usage of debuginfod as the server is currently not responding --- .github/workflows/valgrind.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml index 97f875d5205..60a52c3b074 100644 --- a/.github/workflows/valgrind.yml +++ b/.github/workflows/valgrind.yml @@ -51,8 +51,9 @@ jobs: valgrind --error-limit=yes --leak-check=full --num-callers=50 --show-reachable=yes --track-origins=yes --suppressions=valgrind/testrunner.supp --gen-suppressions=all --log-fd=9 --error-exitcode=42 ./testrunner TestGarbage TestOther TestSimplifyTemplate 9>memcheck.log || ec=1 cat memcheck.log exit $ec - env: - DEBUGINFOD_URLS: https://debuginfod.ubuntu.com + # TODO: debuginfod.ubuntu.com is currently not responding to any requests causing it to run into a 40(!) minute timeout + #env: + # DEBUGINFOD_URLS: https://debuginfod.ubuntu.com - uses: actions/upload-artifact@v3 if: success() || failure()