summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-04-03 13:35:05 +0100
committerDominic Steinitz <dominic@steinitz.org>2018-04-03 13:35:05 +0100
commit17e9c7e6dd2028c6c2710c7d5c19df294ec8d442 (patch)
tree140ad491be8567c42d20f64a615d9f5af7131b79 /.circleci
parent113ba5dff70c68d9506b8e43eaeb8be3ad15bdf6 (diff)
Change cache name
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 497e4dc..308dc04 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,7 +6,7 @@ jobs:
6 steps: 6 steps:
7 - checkout 7 - checkout
8 - restore_cache: 8 - restore_cache:
9 key: stack-deps-{{ checksum "stack.yaml" }} 9 key: stack-deps-foo-{{ checksum "stack.yaml" }}
10 - run: 10 - run:
11 name: Update packages 11 name: Update packages
12 command: nix-channel --update 12 command: nix-channel --update
@@ -19,7 +19,7 @@ jobs:
19 - save_cache: 19 - save_cache:
20 paths: 20 paths:
21 - "~/.stack" 21 - "~/.stack"
22 key: stack-deps-{{ checksum "stack.yaml" }} 22 key: stack-deps-foo-{{ checksum "stack.yaml" }}
23 - run: 23 - run:
24 name: Building 24 name: Building
25 command: stack build --pedantic 25 command: stack build --pedantic