Merge pull request #8185 from mattfarina/fix-8184

Adding a counter to the dependencies cache
pull/8288/head
Matt Farina 5 years ago committed by GitHub
commit 9fdd17393f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,13 +13,13 @@ jobs:
version: 18.06.0-ce
- restore_cache:
keys:
- glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
- glide- # used as a fall through if the checksum fails to find exact entry
- glide-2-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
- glide-2- # used as a fall through if the checksum fails to find exact entry
- run:
name: install dependencies
command: .circleci/bootstrap.sh
- save_cache:
key: glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
key: glide-2-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
paths:
- /root/.glide # Where the glide cache is stored
- run:

Loading…
Cancel
Save