aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorwbond <will@wbond.net>2018-09-04 06:53:53 -0400
committerwbond <will@wbond.net>2018-09-04 06:53:53 -0400
commitaaa2c5a523ca0484365ee38b7d522b85a6f03509 (patch)
tree4d6a0a07f8b72666943e73286ab4590da2b84a4e /.circleci
parentba72f7177a713d4e9b468c005f6c4306cbca5cc5 (diff)
downloadasn1crypto-aaa2c5a523ca0484365ee38b7d522b85a6f03509.tar.gz
Try caching homebrew on CircleCI
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index f76579d..385e551 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -5,7 +5,14 @@ jobs:
# This is the last version using macOS 10.12, which has Python 2.6
xcode: 9.2.0
steps:
+ - restore_cache:
+ keys:
+ - homebrew
- run: brew update
+ - save_cache:
+ key: homebrew
+ paths:
+ - /usr/local/Homebrew
- run: brew upgrade python
- run: brew install pypy
- checkout