.circleci/config.yml in procon_bypass_man-0.3.3.1 vs .circleci/config.yml in procon_bypass_man-0.3.4
- old
+ new
@@ -25,10 +25,11 @@
- restore_cache:
keys:
- gem-cache-v1-<< parameters.ruby-version >>-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
- gem-cache-v1-<< parameters.ruby-version >>-{{ arch }}-{{ .Branch }}
- gem-cache-v1
- - run: gem i bundler && bundle install --path vendor/bundle --jobs 100 && bundle clean
+ # NOTE: ruby2.5だとbundler2.4系に対応していないのでバージョンを固定する
+ - run: gem i bundler -v 2.3.26 && bundle install --path vendor/bundle --jobs 100 && bundle clean
- save_cache:
key: gem-cache-v1-<< parameters.ruby-version >>-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle