Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
ci(cache): update cache config to reflect new env variable (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
laser authored Sep 19, 2019
1 parent be273a9 commit 04eaf9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ commands:
name: Configure environment variables
command: |
echo 'export RUST_LOG=info' >> $BASH_ENV
echo 'export FILECOIN_PARAMETER_CACHE="/tmp/filecoin-parameter-cache"' >> $BASH_ENV
echo 'export FIL_PROOFS_PARAMETER_CACHE="/tmp/filecoin-parameter-cache"' >> $BASH_ENV
echo 'export RUST_BACKTRACE=1' >> $BASH_ENV
echo 'export CARGO_HOME=/tmp/cargo' >> $BASH_ENV
echo 'export RUSTUP_HOME=/tmp/rustup' >> $BASH_ENV
Expand All @@ -327,7 +327,7 @@ commands:
restore_parameter_cache:
steps:
- restore_cache:
key: cargo-v5-{{ checksum "paramfetch-checksum.txt" }}
key: v1-proof-params-{{ checksum "paramfetch-checksum.txt" }}
paths:
- /tmp/filecoin-parameter-cache
restore_rust_cache:
Expand All @@ -337,7 +337,7 @@ commands:
save_parameter_cache:
steps:
- save_cache:
key: cargo-v5-{{ checksum "paramfetch-checksum.txt" }}
key: v1-proof-params-{{ checksum "paramfetch-checksum.txt" }}
paths:
- /tmp/filecoin-parameter-cache
save_rust_cache:
Expand Down

0 comments on commit 04eaf9f

Please sign in to comment.