Skip to content

Commit

Permalink
Cache registry folder
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Nov 23, 2022
1 parent f618e0b commit 13841ef
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .circleci/config.yml
Expand Up @@ -88,17 +88,19 @@ jobs:
command: rustc --version; cargo --version; rustup --version
- restore_cache:
keys:
- cargocache-v2-libwasmvm_windows-rust:1.59.0-{{ checksum "libwasmvm/Cargo.lock" }}
- cachev4-libwasmvm_windows-rust:1.59.0-{{ checksum "libwasmvm/Cargo.lock" }}
- run:
name: Run unit tests
working_directory: libwasmvm
command: cargo test
- save_cache:
paths:
- target/debug/.fingerprint
- target/debug/build
- target/debug/deps
key: cargocache-v2-libwasmvm_windows-rust:1.59.0-{{ checksum "libwasmvm/Cargo.lock" }}
# ".." is the easiest way to get $HOME here (pwd is $HOME\project)
- ../.cargo/registry
- libwasmvm/target/debug/.fingerprint
- libwasmvm/target/debug/build
- libwasmvm/target/debug/deps
key: cachev4-libwasmvm_windows-rust:1.59.0-{{ checksum "libwasmvm/Cargo.lock" }}

libwasmvm_audit:
docker:
Expand Down

0 comments on commit 13841ef

Please sign in to comment.