From b998ed9614895dcd92c9f569e5e8937de288d9e2 Mon Sep 17 00:00:00 2001 From: Carlgo11 Date: Wed, 22 Mar 2023 07:00:34 +0100 Subject: [PATCH] Fix CircleCI Cache (#7488) --- .circleci/config.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f007d84bf4b..0b3c9ce728c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,9 +9,11 @@ jobs: - restore_cache: keys: - - bundler-cache - - awis-cache - - similarweb-cache + - bundler-cache- + + - restore_cache: + keys: + - similarweb-cache- - run: name: Bundler @@ -33,12 +35,12 @@ jobs: command: bundle exec ruby ./tests/similarweb.rb - save_cache: - key: similarweb-cache + key: similarweb-cache-{{ epoch }} paths: - "/tmp/similarweb/*" - save_cache: - key: bundler-cache + key: bundler-cache-{{ epoch }} paths: - "/tmp/bundler/*"