From df4c69e9cc0e646ec49a1b2e3fec149ad728aa1f Mon Sep 17 00:00:00 2001 From: Tunglies <77394545+Tunglies@users.noreply.github.com> Date: Tue, 18 Nov 2025 19:55:30 +0800 Subject: [PATCH] fix(workflows): enable caching for all crates in autobuild, dev, and lint-clippy workflows --- .github/workflows/autobuild.yml | 6 +++--- .github/workflows/dev.yml | 2 +- .github/workflows/lint-clippy.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index c5f5f6d63..894262216 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -161,7 +161,7 @@ jobs: key: "rust-shared-stable-${{ matrix.os }}-${{ matrix.target }}" workspaces: | . -> target - cache-all-crates: false + cache-all-crates: true cache-workspace-crates: true - name: Install dependencies (ubuntu only) @@ -272,7 +272,7 @@ jobs: key: "rust-shared-stable-${{ matrix.os }}-${{ matrix.target }}" workspaces: | . -> target - cache-all-crates: false + cache-all-crates: true cache-workspace-crates: true - name: Install pnpm @@ -422,7 +422,7 @@ jobs: key: "rust-shared-stable-${{ matrix.os }}-${{ matrix.target }}" workspaces: | . -> target - cache-all-crates: false + cache-all-crates: true cache-workspace-crates: true - name: Install pnpm diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 7ec45cb14..ff9b2f5f6 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -84,7 +84,7 @@ jobs: key: "rust-shared-stable-${{ matrix.os }}-${{ matrix.target }}" workspaces: | . -> target - cache-all-crates: false + cache-all-crates: true cache-workspace-crates: true - name: Install dependencies (ubuntu only) diff --git a/.github/workflows/lint-clippy.yml b/.github/workflows/lint-clippy.yml index 655d5b3e2..06a3229f1 100644 --- a/.github/workflows/lint-clippy.yml +++ b/.github/workflows/lint-clippy.yml @@ -63,7 +63,7 @@ jobs: key: "rust-shared-stable-${{ matrix.os }}-${{ matrix.target }}" workspaces: | . -> target - cache-all-crates: false + cache-all-crates: true cache-workspace-crates: true - name: Install dependencies (ubuntu only)