Skip to content

Commit

Permalink
Comment out VM cache
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Sep 12, 2024
1 parent 2d0f2de commit cc97b19
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,9 @@ jobs:
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
- restore_cache:
keys:
- cargocache-v2-package_vm-rust:1.74-{{ checksum "Cargo.lock" }}
#- restore_cache:
# keys:
# - cargocache-v2-package_vm-rust:1.74-{{ checksum "Cargo.lock" }}
- run:
name: Build
working_directory: ~/project/packages/vm
Expand All @@ -485,13 +485,13 @@ jobs:
command: |
cargo build --locked --example multi_threaded_cache
time ../../target/debug/examples/multi_threaded_cache >/dev/null
- save_cache:
paths:
- /usr/local/cargo/registry
- target/debug/.fingerprint
- target/debug/build
- target/debug/deps
key: cargocache-v2-package_vm-rust:1.74-{{ checksum "Cargo.lock" }}
#- save_cache:
# paths:
# - /usr/local/cargo/registry
# - target/debug/.fingerprint
# - target/debug/build
# - target/debug/deps
# key: cargocache-v2-package_vm-rust:1.74-{{ checksum "Cargo.lock" }}

package_vm_derive:
docker:
Expand Down

0 comments on commit cc97b19

Please sign in to comment.