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

try caching the nix store to save us rebuilding graphviz every time

parent 80f72952
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,10 @@ jobs:
# Required for the checkout step
nix-env -i git openssh
- restore_cache:
keys:
- "v1-nix-store"
- "checkout"
- run:
......@@ -37,6 +41,11 @@ jobs:
apk update
apk add ca-certificates
- save_cache:
key: "v1-nix-store"
paths:
- "/nix/store"
- store_artifacts:
path: "result/docs"
destination: "docs"
......
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