diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-04-21 19:48:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 08:48:41 +0900 |
commit | a7b487327595fc7f2a19458dfee54c2d39c706ee (patch) | |
tree | 13c67296fcc9e6812e8ea79b1c8b4f92dca1a393 | |
parent | 8d0e0ead51d523c35c7d6b423510c9df8ba1339c (diff) |
chore: clean cache (#10290)
-rw-r--r-- | .github/workflows/ci.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c522d730..87886b7cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,9 +175,9 @@ jobs: ~/.cargo/registry ./target key: - c-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} + d-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} restore-keys: | - c-${{ matrix.os }}-${{ matrix.kind }}- + d-${{ matrix.os }}-${{ matrix.kind }}- - name: Apply and update mtime cache uses: ./.github/mtime_cache @@ -354,3 +354,12 @@ jobs: target/release/deno_src.tar.gz target/release/lib.deno.d.ts draft: true + + - name: Clean before cache + shell: bash + run: | + rm -f target/*/deno target/*/denort target/*/test_server + rm -rf target/*/examples/ + rm -rf target/*/gn_out/ + rm -rf target/*/*.zip + |