From 04eaf9fdfdd48ab0b37f523edaba251239c86f8b Mon Sep 17 00:00:00 2001 From: Erin Swenson-Healey Date: Thu, 19 Sep 2019 08:26:57 -0700 Subject: [PATCH] ci(cache): update cache config to reflect new env variable (#56) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0dd9f57..3da28f1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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: @@ -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: