From fc28715b9169cec270ae42921ea0ad4573299ba2 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Sat, 9 May 2026 16:51:29 +0300 Subject: [PATCH] Workaround for random windows cache failure --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dff8dcfce34..cf31b2068fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -107,6 +107,8 @@ jobs: restore-keys: | ${{ runner.os }}-stable--${{ hashFiles('**/Cargo.toml') }}- ${{ runner.os }}-stable-- + # Windows runners randomly crashes, https://github.com/actions/cache/issues/1754 + continue-on-error: true - name: Install macOS dependencies uses: ./.github/actions/install-macos-deps @@ -325,6 +327,8 @@ jobs: restore-keys: | ${{ runner.os }}-stable--${{ hashFiles('**/Cargo.toml') }}- ${{ runner.os }}-stable-- + # Windows runners randomly crashes, https://github.com/actions/cache/issues/1754 + continue-on-error: true - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 @@ -469,6 +473,8 @@ jobs: restore-keys: | ${{ runner.os }}-stable--${{ hashFiles('**/Cargo.toml') }}- ${{ runner.os }}-stable-- + # Windows runners randomly crashes, https://github.com/actions/cache/issues/1754 + continue-on-error: true - name: Clippy run: cargo clippy --keep-going ${{ env.CARGO_ARGS }} --workspace --all-targets ${{ env.WORKSPACE_EXCLUDES }} -- -Dwarnings