Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): add -repo to repo cache names to not match with deps cache #288

Merged
merged 2 commits into from
Apr 14, 2021
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
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ version: 2

references:
repo_cache_key: &repo_cache_key
v1-jackdaw-{{ .Branch }}-{{ .Revision }}
v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}

repo_cache_backup_1: &repo_cache_backup_1
v1-jackdaw-{{ .Branch }}
v1-jackdaw-repo-{{ .Branch }}

repo_cache_backup_2: &repo_cache_backup_2
v1-jackdaw
v1-jackdaw-repo

restore_repo: &restore_repo
restore_cache:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- *restore_repo
- checkout
- save_cache:
key: v1-jackdaw-{{ .Branch }}-{{ .Revision }}
key: v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}
paths:
- .
checkout_tags:
Expand All @@ -96,7 +96,7 @@ jobs:
git fetch --force origin "refs/tags/${CIRCLE_TAG}:refs/tags/${CIRCLE_TAG}"
- checkout
- save_cache:
key: v1-jackdaw-{{ .Branch }}-{{ .Revision }}
key: v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}
paths:
- .
deps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

## [0.7.9] - [2021-04-13]
## [0.7.10] - [2021-04-14]
* Bump netty related packages to latest version (related to changes in `0.7.8` which fixes CVEs).

## [0.7.8] - [2021-03-01]
Expand Down