diff options
author | Andre Arko <andre@arko.net> | 2014-06-25 13:01:25 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2014-06-25 13:01:25 -0700 |
commit | a1bd1e842f8c264b2216941007a89cba6bc3c46b (patch) | |
tree | 2499bcf1dda73b6b38913e95a18d8e2db77102f6 /.travis.yml | |
parent | 716e0c1053f691649027bce1aeaa7202b8d67af8 (diff) | |
download | bundler-a1bd1e842f8c264b2216941007a89cba6bc3c46b.tar.gz |
rubygems 2.3.0 is out
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index abec011e01..6eb1571c77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,16 +42,24 @@ env: # We need to know if changes to rubygems will break bundler on release - RGV=master # Test the latest rubygems release with all of our supported rubies - - RGV=v2.2.2 + - RGV=v2.3.0 + matrix: include: + # Ruby 2.1, Rubygems 2.2.2 and up + - rvm: 2.1.2 + env: RGV=v2.2.2 # Ruby 2.0.0, Rubygems 2.0 and up - rvm: 2.0.0 + env: RGV=v2.2.2 + - rvm: 2.0.0 env: RGV=v2.1.11 - rvm: 2.0.0 env: RGV=v2.0.14 # Ruby 1.9.3, Rubygems 1.5.3 and up - rvm: 1.9.3 + env: RGV=v2.2.2 + - rvm: 1.9.3 env: RGV=v2.1.11 - rvm: 1.9.3 env: RGV=v2.0.14 @@ -65,7 +73,7 @@ matrix: env: RGV=v1.5.3 # Ruby 1.8.7, Rubygems 1.3.6 and up - rvm: 1.8.7 - env: RGV=v2.1.11 + env: RGV=v2.2.2 - rvm: 1.8.7 env: RGV=v2.0.14 - rvm: 1.8.7 @@ -90,16 +98,16 @@ matrix: # Ruby 1.9.2 sanity check # (but it's just too slow and sometimes goes over the Travis limit) - rvm: 1.9.2 - env: RGV=v2.2.2 + env: RGV=v2.3.0 # Ruby-head (we want to know how we're doing, but not fail the build) - rvm: ruby-head env: RGV=master # JRuby, the latest (not maintained, but good to know) - rvm: jruby - env: RGV=v2.2.2 + env: RGV=v2.3.0 # Rubinius, the latest (not maintained, but good to know) - rvm: rbx-2 - env: RGV=v2.2.2 + env: RGV=v2.3.0 allow_failures: - rvm: 1.8.7 env: RGV=2.1.11 |