mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
chore: clean cache (#10290)
This commit is contained in:
parent
8d0e0ead51
commit
a7b4873275
1 changed files with 11 additions and 2 deletions
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
|
@ -175,9 +175,9 @@ jobs:
|
||||||
~/.cargo/registry
|
~/.cargo/registry
|
||||||
./target
|
./target
|
||||||
key:
|
key:
|
||||||
c-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }}
|
d-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
c-${{ matrix.os }}-${{ matrix.kind }}-
|
d-${{ matrix.os }}-${{ matrix.kind }}-
|
||||||
|
|
||||||
- name: Apply and update mtime cache
|
- name: Apply and update mtime cache
|
||||||
uses: ./.github/mtime_cache
|
uses: ./.github/mtime_cache
|
||||||
|
@ -354,3 +354,12 @@ jobs:
|
||||||
target/release/deno_src.tar.gz
|
target/release/deno_src.tar.gz
|
||||||
target/release/lib.deno.d.ts
|
target/release/lib.deno.d.ts
|
||||||
draft: true
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue