From f10717b1fb044179fc7ed9d0b9b737e639414eae Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 14 Apr 2020 15:27:58 -0600 Subject: [PATCH] Use a new cache key in hopes of fixing test failures The next step in debugging our periodic rendering test failures is to use a new cache key. This change also removes the less specific key, so we will no longer get partial cache restores. If we don't see test failures after this change, we may try adding the v2-dependencies- as a key. --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fc2e3d1757..bc69bb88b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,8 +11,7 @@ jobs: - restore_cache: keys: - - v1-dependencies-{{ checksum "package-lock.json" }} - - v1-dependencies- + - v2-dependencies-{{ checksum "package-lock.json" }} - run: name: Install Dependencies @@ -21,7 +20,7 @@ jobs: - save_cache: paths: - node_modules - key: v1-dependencies-{{ checksum "package-lock.json" }} + key: v2-dependencies-{{ checksum "package-lock.json" }} - run: name: Run Tests