From d04ab28eaf7533bec33ba63758466328147025f3 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 6 Nov 2019 10:15:52 -0500
Subject: [PATCH] Bust the CircleCI Stack cache

When the nixpkgs revision was bumped, the stack version in use was bumped.
The newer stack version uses a different cache layout and can't find any of
the cached artifacts in the old cache.
---
 .circleci/config.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index a51cbb6..dd2666b 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -93,8 +93,8 @@ jobs:
           # the cache was written (but usually it will have).
           name: "Restore Cached Dependencies"
           keys:
-            - paymentserver-v1-{{ checksum "stack.yaml" }}-{{ checksum "PaymentServer.cabal" }}
-            - paymentserver-v1-{{ checksum "stack.yaml" }}
+            - paymentserver-v2-{{ checksum "stack.yaml" }}-{{ checksum "PaymentServer.cabal" }}
+            - paymentserver-v2-{{ checksum "stack.yaml" }}
 
       - run:
           # Build just our dependencies.  It's nice to have this as a separate
@@ -124,7 +124,7 @@ jobs:
           # way we get to save the cache whether or not the test suite goes on
           # to succeed.
           name: "Cache Dependencies"
-          key: paymentserver-v1-{{ checksum "stack.yaml" }}-{{ checksum "PaymentServer.cabal" }}
+          key: paymentserver-v2-{{ checksum "stack.yaml" }}-{{ checksum "PaymentServer.cabal" }}
           paths:
             - "/root/.stack"
             - ".stack-work"
-- 
GitLab