summaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorAnthony HAMON <hamon.anth@gmail.com>2018-09-04 22:23:17 +0200
committerAnthony HAMON <hamon.anth@gmail.com>2018-09-05 08:55:15 +0200
commit4d745fa52537761e1695d71a4952780c0268af5f (patch)
tree919fe72d17db9096386393d11b7f4217999412cb /.circleci/config.yml
parentf0e19690f5dd88c12cc4df6e0e352d70f5f86aad (diff)
update cache path in circleci
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 16bafdb58..2723c13cc 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -9,7 +9,7 @@ jobs:
- checkout
- restore_cache:
keys:
- - pkg-cache-{{ checksum "Gopkg.lock" }}
+ - pkg-cache-{{ checksum "Gopkg.lock" }}-v1
- run:
name: Run gofmt -s
command: |
@@ -31,9 +31,9 @@ jobs:
command: |
bash <(curl -s https://codecov.io/bash)
- save_cache:
- key: pkg-cache-{{ checksum "Gopkg.lock" }}
+ key: pkg-cache-{{ checksum "Gopkg.lock" }}-v1
paths:
- - "/go/pkg"
+ - ~/.cache/go-build
release:
docker: