From bd411f5f72c82b9bb8fc07339885443d4509d1bc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 31 Oct 2019 09:05:25 -0400 Subject: [PATCH] Bust the Nix store cache. We have more dependencies to put in it. --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec30b48..a51cbb6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,9 +82,9 @@ jobs: # If nixpkgs changes then potentially a lot of cached packages for # the base system will be invalidated so we may as well drop them # and make a new cache with the new packages. - - paymentserver-nix-store-v1-{{ checksum "nixpkgs.rev" }}-{{ checksum "ristretto.nix" }} - - paymentserver-nix-store-v1-{{ checksum "nixpkgs.rev" }}- - - paymentserver-nix-store-v1- + - paymentserver-nix-store-v2-{{ checksum "nixpkgs.rev" }}-{{ checksum "ristretto.nix" }} + - paymentserver-nix-store-v2-{{ checksum "nixpkgs.rev" }}- + - paymentserver-nix-store-v2- - restore_cache: # Restore the cache of Stack's state. This will have all of the @@ -156,7 +156,7 @@ jobs: - save_cache: name: "Cache Nix Store Paths" - key: paymentserver-nix-store-v1-{{ checksum "nixpkgs.rev" }}-{{ checksum "ristretto.nix" }} + key: paymentserver-nix-store-v2-{{ checksum "nixpkgs.rev" }}-{{ checksum "ristretto.nix" }} paths: - "/nix" -- GitLab