Skip to content
Snippets Groups Projects
Commit f71e117e authored by rschamp's avatar rschamp
Browse files

Cache git checkouts

parent d011aca3
No related merge requests found
......@@ -14,7 +14,15 @@ jobs:
working_directory: ~/repo
steps:
- restore_cache:
keys:
- v1-git-{{ .Revision }}
- v1-git-
- checkout
- save_cache:
paths:
- .git
key: v1-git-{{ .Revision }}
# Download and cache dependencies
- restore_cache:
......@@ -75,6 +83,10 @@ jobs:
- image: circleci/node:8.16-browsers
working_directory: ~/repo
steps:
- restore_cache:
keys:
- v1-git-{{ .Revision }}
- v1-git-
- checkout
- restore_cache:
keys:
......
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