清除构建缓存
Some checks failed
Release / windows-x86_64-gnu (push) Failing after 4m49s

This commit is contained in:
2026-06-19 04:17:18 +08:00
Unverified
parent 9fba6c494a
commit 5876169460

View File

@@ -47,13 +47,18 @@ jobs:
with:
clean: false
- name: Cache Cargo registry and target
- name: Free disk space
run: |
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
sudo apt-get clean
df -h
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ env.TARGET }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ env.TARGET }}-cargo-