From d86b7ff85b49248d67d229cbeff1ef79c9284261 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 4 Sep 2026 15:46:43 +0200 Subject: [PATCH] Ignore crate downloads in diagnostic compares --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 12c66e5..d934afb 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -135,7 +135,7 @@ jobs: set +e # Ignore build progress, if it's cached then the built crates change cargo build --all-features --package splat-overload-diagnostics --bin "$test_name" 2>&1 | \ - grep --invert-match -e 'Updating .* index' -e 'Compiling [^ ]* .*' \ + grep --invert-match -e 'Updating .* index' -e 'Downloading .*' -e 'Downloaded .*' -e 'Compiling [^ ]* .*' \ > "/tmp/$test_name.stderr" CARGO_EXIT_CODE=$? set -e