From d3e5ee509c8eef5b8cff4e86341978ba004d58cd Mon Sep 17 00:00:00 2001 From: Javier Neira Date: Thu, 29 Jul 2021 09:14:47 +0200 Subject: [PATCH] Remove HIE_CACHE from cache key This was added in https://github.com/haskell/haskell-ide-engine/pull/968#issuecomment-445067713 I think it is better to make explicit the invalidation with a commit, to make clear in the commit history when it was done --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 690d28420d..2a8e5181b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ defaults: &defaults - restore_cache: keys: - - v4-stack-cache-{{ .Environment.HIE_CACHE }}-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }} + - v4-stack-cache-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }} - run: name: Stack upgrade @@ -40,7 +40,7 @@ defaults: &defaults destination: bin - save_cache: - key: v4-stack-cache-{{ .Environment.HIE_CACHE }}-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }} + key: v4-stack-cache-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }} paths: &cache_paths - ~/.stack