From afedcd68d2d4a7868eb78396b8eee697b05614b1 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Tue, 8 Oct 2019 08:14:28 -0400 Subject: [PATCH] Bust the cache so it can be regenerated with codecov in it. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8c393e1..96e8e38 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -107,8 +107,8 @@ 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. - - zkapauthorizer-nix-store-v1-{{ checksum "nixpkgs.rev" }} - - zkapauthorizer-nix-store-v1- + - zkapauthorizer-nix-store-v2-{{ checksum "nixpkgs.rev" }} + - zkapauthorizer-nix-store-v2- - run: name: "Run Test Suite" @@ -137,7 +137,7 @@ jobs: - save_cache: name: "Cache Nix Store Paths" - key: zkapauthorizer-nix-store-v1-{{ checksum "nixpkgs.rev" }} + key: zkapauthorizer-nix-store-v2-{{ checksum "nixpkgs.rev" }} paths: - "/nix" -- GitLab