Skip to content

Commit

Permalink
Auto merge of rubygems#4559 - RochesterinNYC:update-travis-rubygems-r…
Browse files Browse the repository at this point in the history
…uby, r=segiddins

[Travis] Test against Rubygems `2.6.4` and Ruby `2.3.1`

- Side note: this feels like something we might be able to automate if we had a CI pipeline that could do periodic resource checks (i.e. watch for new version of Rubygems or Ruby).
  • Loading branch information
homu committed May 10, 2016
2 parents fb1dc9a + ef24c9f commit 8d3eb4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ addons:
secure: "TrzIv116JLGUxm6PAUskCYrv8KTDguncKROVwbnjVPKTGDAgoDderd8JUdDEXrKoZ9qGLD2TPYKExt9/QDl71E+qHdWnVqWv4HKCUk2P9z/VLKzHuggOUBkCXiJUhjywUieCJhI3N92bfq2EjSBbu2/OFHqWOjLQ+QCooTEBjv8="

rvm:
- 2.3.0
- 2.3.1
- 2.2
- 2.1
- 2.0.0
Expand All @@ -39,7 +39,7 @@ 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.3
- RGV=v2.6.4
- RGV=v2.4.8

matrix:
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace :spec do
sh "sudo apt-get install graphviz -y 2>&1 | tail -n 2"

# Install the gems with a consistent version of RubyGems
sh "gem update --system 2.6.3"
sh "gem update --system 2.6.4"

$LOAD_PATH.unshift("./spec")
require "support/rubygems_ext"
Expand Down Expand Up @@ -122,7 +122,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.6.3)
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.6.4)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|
Expand Down

0 comments on commit 8d3eb4a

Please sign in to comment.