From 40088a0f3b939f11215a144aa0b25f96ddc00cda Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 2 May 2026 04:33:30 +0900 Subject: [PATCH] ci: Temporarily disable valgrind test ``` error: unable to contact snap store ``` https://status.canonical.com/ --- tools/ci/tool-list.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/ci/tool-list.sh b/tools/ci/tool-list.sh index 626ffaa7..781588af 100755 --- a/tools/ci/tool-list.sh +++ b/tools/ci/tool-list.sh @@ -191,11 +191,12 @@ fi # Not manifest-based case "${host_os}" in linux*) + # TODO: disable valgrind due to Canonical's incident. # Installing snap to container is difficult... # Specifying the version of valgrind is not supported. - if type -P snap >/dev/null && [[ "${version}" == "latest" ]]; then - tools+=(valgrind) - fi + # if type -P snap >/dev/null && [[ "${version}" == "latest" ]]; then + # tools+=(valgrind) + # fi ;; esac # cargo-watch/watchexec-cli is supported by cargo-binstall (through quickinstall)