mirror of
https://github.com/actions/cache.git
synced 2024-11-13 01:24:04 +01:00
examples: Only cache non-redundant cargo state
As the packed crate sources are stored under ~/.cargo/registry/cache, it's redundant to archive the unpacked sources. The sufficient local state of the git dependencies is in ~/.cargo/git/db. Cargo automatically checks out the source trees if missing.
This commit is contained in:
parent
5e5fbe724b
commit
f478dc2492
1 changed files with 3 additions and 2 deletions
|
@ -432,8 +432,9 @@ When dependencies are installed later in the workflow, we must specify the same
|
|||
uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
~/.cargo/registry/index
|
||||
~/.cargo/registry/cache
|
||||
~/.cargo/git/db
|
||||
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }}
|
||||
- name: Cache cargo build
|
||||
uses: actions/cache@v2
|
||||
|
|
Loading…
Reference in a new issue