Skip to content

Commit 22f2cb7

Browse files
authored
Merge pull request #2310 from krzysiek1507/fix/bundler-on-travis
Install bundler ~> 1.17 on Travis
2 parents c6c3927 + a7915c8 commit 22f2cb7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ cache:
66
- vendor/bundle
77

88
before_install:
9-
- "travis_retry gem update --system"
10-
- "travis_retry gem update bundler"
11-
install: bundle install --path=vendor/bundle --retry=3 --jobs=3
9+
- "travis_retry gem update --system 2.7.8"
10+
- "travis_retry gem install bundler -v '1.17.3'"
11+
install: BUNDLER_VERSION=1.17.3 bundle install --path=vendor/bundle --retry=3 --jobs=3
1212

1313
script:
1414
- bundle exec rake ci
@@ -48,6 +48,7 @@ matrix:
4848
- { rvm: 2.1.10, env: RAILS_VERSION=master }
4949
- { rvm: 2.2.8, env: RAILS_VERSION=master }
5050
- { rvm: 2.3.5, env: RAILS_VERSION=master }
51+
- { rvm: 2.4.2, env: RAILS_VERSION=master }
5152
- { rvm: 2.1.10, env: RAILS_VERSION=5.0 }
5253
- { rvm: 2.1.10, env: RAILS_VERSION=5.1 }
5354
- { rvm: 2.1.10, env: RAILS_VERSION=5.2 }

0 commit comments

Comments
 (0)