Merge pull request #2310 from krzysiek1507/fix/bundler-on-travis

Install bundler ~> 1.17 on Travis
This commit is contained in:
Benjamin Fleischer 2019-01-29 09:48:19 -06:00 committed by GitHub
commit 22f2cb76dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,9 +6,9 @@ cache:
- vendor/bundle - vendor/bundle
before_install: before_install:
- "travis_retry gem update --system" - "travis_retry gem update --system 2.7.8"
- "travis_retry gem update bundler" - "travis_retry gem install bundler -v '1.17.3'"
install: bundle install --path=vendor/bundle --retry=3 --jobs=3 install: BUNDLER_VERSION=1.17.3 bundle install --path=vendor/bundle --retry=3 --jobs=3
script: script:
- bundle exec rake ci - bundle exec rake ci
@ -48,6 +48,7 @@ matrix:
- { rvm: 2.1.10, env: RAILS_VERSION=master } - { rvm: 2.1.10, env: RAILS_VERSION=master }
- { rvm: 2.2.8, env: RAILS_VERSION=master } - { rvm: 2.2.8, env: RAILS_VERSION=master }
- { rvm: 2.3.5, env: RAILS_VERSION=master } - { rvm: 2.3.5, env: RAILS_VERSION=master }
- { rvm: 2.4.2, env: RAILS_VERSION=master }
- { rvm: 2.1.10, env: RAILS_VERSION=5.0 } - { rvm: 2.1.10, env: RAILS_VERSION=5.0 }
- { rvm: 2.1.10, env: RAILS_VERSION=5.1 } - { rvm: 2.1.10, env: RAILS_VERSION=5.1 }
- { rvm: 2.1.10, env: RAILS_VERSION=5.2 } - { rvm: 2.1.10, env: RAILS_VERSION=5.2 }