From 047bd7dfe3b6563ea5f6543533207e3481f3e74c Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 17 Jan 2026 10:34:17 -0800 Subject: ci: skip CVS and P4 tests in leaks job, too Looking at the CI logs, the p4 and cvs tests account for another 24 minutes of test time and they offer minimal value for quite a similar reason as the previous step. Let's introduce and use a mechanism to skip these tests to save some resources. Suggested-by: Phillip Wood Signed-off-by: Junio C Hamano --- ci/lib.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ci') diff --git a/ci/lib.sh b/ci/lib.sh index a165c7f268..3ecbf147db 100755 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -356,7 +356,9 @@ linux-musl-meson) ;; linux-leaks|linux-reftable-leaks) export SANITIZE=leak + export NO_CVS_TESTS=LetsSaveSomeTime export NO_SVN_TESTS=LetsSaveSomeTime + export NO_P4_TESTS=LetsSaveSomeTime ;; linux-asan-ubsan) export SANITIZE=address,undefined -- cgit v1.3-5-g9baa