Skip to content

Commit 9ed64b9

Browse files
committed
Fix up bundler version issue
1 parent c6b5c79 commit 9ed64b9

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.travis.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
language: ruby
22

33
before_install:
4-
# Workaround for https://github.com/travis-ci/travis-ci/issues/8969
5-
- gem update --system
4+
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
5+
- gem update --system '2.7.8' --no-document
6+
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
7+
- gem install bundler -v '< 2' --no-document
68

79
rvm:
810
- 2.4
@@ -19,13 +21,15 @@ env:
1921

2022
matrix:
2123
exclude:
22-
- rvm: 2.5
23-
env: RAILS_VERSION=4.2
24-
- rvm: 2.5
25-
env: RAILS_VERSION=5.0
24+
- rvm: 2.4
25+
env: RAILS_VERSION=6.0
2626
- rvm: 2.6
2727
env: RAILS_VERSION=4.2
2828
- rvm: 2.6
2929
env: RAILS_VERSION=5.0
30+
- rvm: 2.7
31+
env: RAILS_VERSION=4.2
32+
- rvm: 2.7
33+
env: RAILS_VERSION=5.0
3034

3135
sudo: false

0 commit comments

Comments
 (0)