Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion orbs/shared/commands/setup_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ steps:
steps:
- restore_cache:
keys:
- v1-daily-cache-{{ arch }}-
- v2-daily-cache-{{ arch }}-
# Adds a github org scoped SSH key to the project added by Wheatley
- add_ssh_keys
- when:
Expand Down
7 changes: 4 additions & 3 deletions orbs/shared/jobs/save_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ steps:
steps:
- restore_cache:
keys:
- v1-toggle-daily-cache-{{ arch }}-{{ .Revision }}
- v2-toggle-daily-cache-{{ arch }}-{{ .Revision }}
- run:
name: Check cache flag
command: |
Expand All @@ -78,13 +78,14 @@ steps:
name: Run tests
command: make test
- save_cache:
key: v1-daily-cache-{{ arch }}-{{ epoch }}
key: v2-daily-cache-{{ arch }}-{{ epoch }}
paths:
- "~/.cache"
- "~/.asdf"
- "~/.outreach/.cache"
- "~/.local/share/mise"
- save_cache:
key: v1-toggle-daily-cache-{{ arch }}-{{ .Revision }}
key: v2-toggle-daily-cache-{{ arch }}-{{ .Revision }}
paths:
- "~/cache-toggle"

Expand Down