summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-11-01 23:15:49 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-11-02 17:18:35 -0500
commitf2f34eee922a143951f68b11cabdb68568c2db2b (patch)
tree2a63e863fdff09793b288fc45a07a0171f0bb7fd
parentd17f2e43236ba53f05b70e7317d218ba94e293c8 (diff)
downloadbundler-seg-rubygems-2.7.0.tar.gz
[Travis] Test against RubyGems 2.7.0seg-rubygems-2.7.0
-rw-r--r--.travis.yml10
-rw-r--r--Rakefile2
2 files changed, 8 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 5110cb5e7c..978941e310 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,22 +35,26 @@ 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.6.13
+ - RGV=v2.7.0
matrix:
include:
# Ruby 2.4, Rubygems 2.6.8 and up
+ - rvm: 2.4.2
+ env: RGV=v2.6.14
# Ruby 2.3, Rubygems 2.5.1 and up
- rvm: 2.3.5
env: RGV=v2.5.2
+ - rvm: 2.3.5
+ env: RGV=v2.6.14
# Ruby-head (we want to know how we're doing, but not fail the build)
- rvm: ruby-head
env: RGV=master
# 1.x mode (we want to keep stuff passing in 1.x mode for now)
- rvm: 2.4.2
- env: RGV=v2.6.13 BUNDLER_SPEC_SUB_VERSION=1.98
+ env: RGV=v2.7.0 BUNDLER_SPEC_SUB_VERSION=1.98
- rvm: 1.8.7
- env: RGV=v2.6.13 BUNDLER_SPEC_SUB_VERSION=1.98
+ env: RGV=v2.7.0 BUNDLER_SPEC_SUB_VERSION=1.98
allow_failures:
- rvm: ruby-head
diff --git a/Rakefile b/Rakefile
index 645c98c442..d93f1ecc7e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -147,7 +147,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w[master]
- releases = %w[v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.29 v2.0.14 v2.1.11 v2.2.5 v2.4.8 v2.5.2 v2.6.8 v2.6.13]
+ releases = %w[v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.29 v2.0.14 v2.1.11 v2.2.5 v2.4.8 v2.5.2 v2.6.8 v2.6.14 v2.7.0]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|