summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-11-04 02:57:50 +0000
committerThe Bundler Bot <bot@bundler.io>2017-11-04 02:57:50 +0000
commit7dac6eb80aeaf18ec95dc87a7ac0ff8ee68493cd (patch)
tree63f86e68a4f96fcbccfcfae7de658c73e3fe2180
parentd17f2e43236ba53f05b70e7317d218ba94e293c8 (diff)
parent0c78133a15f592f3a8fd0ee6c54ddc64d076b83e (diff)
downloadbundler-7dac6eb80aeaf18ec95dc87a7ac0ff8ee68493cd.tar.gz
Auto merge of #6142 - bundler:seg-rubygems-2.7.0, r=segiddins
[Travis] Test against RubyGems 2.7.0 Since I just released 2.7.0, we now have to test against it!
-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..8931bcced7 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.1
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.1 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.1 BUNDLER_SPEC_SUB_VERSION=1.98
allow_failures:
- rvm: ruby-head
diff --git a/Rakefile b/Rakefile
index 645c98c442..2a0ff55c6a 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.1]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|