Skip to content

Commit

Permalink
Auto merge of rubygems#6142 - bundler:seg-rubygems-2.7.0, r=segiddins
Browse files Browse the repository at this point in the history
[Travis] Test against RubyGems 2.7.0

Since I just released 2.7.0, we now have to test against it!
  • Loading branch information
bundlerbot committed Nov 4, 2017
2 parents d17f2e4 + 0c78133 commit 7dac6eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit 7dac6eb

Please sign in to comment.