diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2018-01-15 15:43:50 -0500 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2018-01-15 15:43:50 -0500 |
commit | 0fbc0487aa89295d1d0df4bda6a85e27c5159c37 (patch) | |
tree | b2117f7a8637f22e593c2eb63a9383baf75efcaa | |
parent | e0831a384b26ba53e048ac1726dfcfaabb3133f8 (diff) | |
download | hakyll-0fbc0487aa89295d1d0df4bda6a85e27c5159c37.tar.gz |
Tickle CircleCI cache
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 4bbc884..bdba9d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: steps: - checkout - restore_cache: - key: 'v1-hakyll-{{ arch }}-{{ .Branch }}' + key: 'v2-hakyll-{{ arch }}-{{ .Branch }}' - run: name: 'Update cabal indices' command: 'cabal update' @@ -19,7 +19,7 @@ jobs: name: 'Build and run tests' command: 'cabal test' - save_cache: - key: 'v1-hakyll-{{ arch }}-{{ .Branch }}-{{ .Revision }}' + key: 'v2-hakyll-{{ arch }}-{{ .Branch }}-{{ .Revision }}' paths: - '~/.cabal' - '~/.ghc' |