Skip to content

Commit

Permalink
Fix CircleCI Cache (2factorauth#7488)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 authored Mar 22, 2023
1 parent 1d8b40d commit b998ed9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:

- restore_cache:
keys:
- bundler-cache
- awis-cache
- similarweb-cache
- bundler-cache-

- restore_cache:
keys:
- similarweb-cache-

- run:
name: Bundler
Expand All @@ -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/*"

Expand Down

0 comments on commit b998ed9

Please sign in to comment.