From 70cf8a94d5dfd370f6145e48cd07f60bdb4df5ef Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 5 Feb 2025 14:57:55 -0600 Subject: [PATCH] Disable CRL checks during Windows test CI --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a813be36dd..2c4a46191c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -217,6 +217,11 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: "Install Rust toolchain" run: rustup show + # There are spurious CRL server offline errors when downloading + # `cargo-bloat` with curl below, so we just disable them for now + - name: "Disable SChannel CRL checks" + run: | + reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL" /v EnableCRLCheck /t REG_DWORD /d 0 /f - name: "Install cargo nextest" uses: taiki-e/install-action@v2 with: