Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
cache
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewxhill committed Oct 11, 2018
1 parent fee4048 commit f21f097
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,20 @@ jobs:
- image: circleci/android:api-26-node8-alpha
resource_class: large
steps:
- restore_cache: # If any cache exists, it'll way speedup these checkouts
keys:
- source-v2-{{ arch }}-{{ .Branch }}-{{ .Revision }}
- source-v2-{{ arch }}-{{ .Branch }}-
- source-v2-{{ arch }}-

- checkout:
path: ~/textile-mobile

- save_cache:
key: source-v2-{{ arch }}-{{ .Branch }}-{{ .Revision }}
paths:
- ".git"

- restore_cache:
key: apk-{{ checksum "android/Gemfile.lock" }}-{{ arch }}

Expand Down

0 comments on commit f21f097

Please sign in to comment.