From f8e228a59434ff5525c0a99c5240f115452756f7 Mon Sep 17 00:00:00 2001 From: Jiangzhou He Date: Wed, 15 Oct 2025 17:33:09 -0700 Subject: [PATCH 1/2] workflow: try to disable python pip cache --- .github/workflows/_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index a386481ca..e1165b923 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -39,7 +39,8 @@ jobs: id: setup_python with: python-version: ${{ matrix.python-version }} - cache: 'pip' + # Python cache is huge and saves little time, so disabled for now, until we have higher cache size limits + # cache: 'pip' - run: rustup toolchain install stable --profile minimal From 318f27293cb365ef7c516634ccb7e795648fbf1f Mon Sep 17 00:00:00 2001 From: Jiangzhou He Date: Wed, 15 Oct 2025 17:38:25 -0700 Subject: [PATCH 2/2] also disable Rust cache for now --- .github/workflows/_test.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index e1165b923..3d5162e31 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -44,13 +44,14 @@ jobs: - run: rustup toolchain install stable --profile minimal - - name: Rust Cache - uses: Swatinem/rust-cache@v2 - with: - key: rust-${{ matrix.platform.runner }}-${{ matrix.python-version }} - cache-targets: 'false' - cache-all-crates: 'false' - cache-workspace-crates: 'false' + # Disable Rust cache until we have higher cache size limits + # - name: Rust Cache + # uses: Swatinem/rust-cache@v2 + # with: + # key: rust-${{ matrix.platform.runner }}-${{ matrix.python-version }} + # cache-targets: 'false' + # cache-all-crates: 'false' + # cache-workspace-crates: 'false' - name: Rust tests (no default features) run: cargo test --no-default-features --verbose