Skip to content
Snippets Groups Projects
Commit 52079e0b authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

try caching nix store paths

parent 7e0ea161
No related branches found
No related tags found
1 merge request!14Try out a CircleCI configuration
...@@ -38,6 +38,12 @@ jobs: ...@@ -38,6 +38,12 @@ jobs:
apk update apk update
apk add ca-certificates apk add ca-certificates
- restore_cache:
name: "Restore Nix Store Paths"
keys:
- paymentserver-nix-store-v1-{{ .Environment.NIXPKGS_REV }}
- paymentserver-nix-store-v1-
- run: - run:
name: "Install Git" name: "Install Git"
command: | command: |
...@@ -65,6 +71,10 @@ jobs: ...@@ -65,6 +71,10 @@ jobs:
- "/root/.stack" - "/root/.stack"
- ".stack-work" - ".stack-work"
- save_cache:
name: "Cache Nix Store Paths"
key: paymentserver-nix-store-v1-{{ .Environment.NIXPKGS_REV }}
workflows: workflows:
version: 2 version: 2
everything: everything:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment