From 0a81277177519c83df1b63f323a710b82d9b8a3b Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Wed, 13 Dec 2017 14:48:26 -0800 Subject: [PATCH] remove cache from CircleCI --- .circleci/config.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 73e734825..3f1081785 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,17 +10,9 @@ jobs: steps: - checkout - setup_remote_docker - - restore_cache: - keys: - - glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }} - - glide- # used as a fall through if the checksum fails to find exact entry - run: name: install dependencies command: make bootstrap - - save_cache: - key: glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }} - paths: - - /root/.glide # Where the glide cache is stored - run: name: test command: .circleci/test.sh