.circleci/config.yml in bitters-2.0.3 vs .circleci/config.yml in bitters-2.0.4
- old
+ new
@@ -1,21 +1,23 @@
version: 2
jobs:
build:
docker:
- - image: circleci/ruby:2.6.5
+ - image: circleci/ruby:2.7.0
+ environment:
+ BUNDLE_PATH: vendor/bundle
steps:
- checkout
- restore_cache:
keys:
- bitters-{{ arch }}-{{ checksum "bitters.gemspec" }}
- run:
name: Install Ruby dependencies
- command: bundle install --path vendor/bundle
+ command: bundle install
- save_cache:
key: bitters-{{ arch }}-{{ checksum "bitters.gemspec" }}
paths:
- vendor/bundle