.circleci/config.yml in sync_machine-0.1.0 vs .circleci/config.yml in sync_machine-0.2.0
- old
+ new
@@ -19,17 +19,10 @@
working_directory: ~/repo
steps:
- checkout
- # Download and cache dependencies
- - restore_cache:
- keys:
- - v1-dependencies-{{ checksum "Gemfile.lock" }}
- # fallback to using the latest cache if no exact match is found
- - v1-dependencies-
-
- run:
name: Configure Bundler
command: |
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
source $BASH_ENV
@@ -37,14 +30,9 @@
- run:
name: install dependencies
command: |
bundle install --jobs=4 --retry=3 --path vendor/bundle
-
- - save_cache:
- paths:
- - ./vendor/bundle
- key: v1-dependencies-{{ checksum "Gemfile.lock" }}
# run tests!
- run:
name: run tests
command: |