summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <me@colby.fyi>2018-10-05 11:05:41 +1000
committerColby Swandale <me@colby.fyi>2018-10-05 13:48:27 +1000
commit854586cf702b680e6689e5a7b22aae631c9b3796 (patch)
treebe9954aea6a11782faa0a35b4a94e86fe3ad21e3
parent3336aba9c946d9711d6716f7e73eb743c1d01f3d (diff)
downloadbundler-854586cf702b680e6689e5a7b22aae631c9b3796.tar.gz
no longer test Ruby 1.9.3 against rubygems master
-rw-r--r--.travis.yml5
-rw-r--r--Rakefile2
2 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 322ec069c5..9338cb9602 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,7 +35,6 @@ rvm:
- 2.2.7
- 2.1.10
- 2.0.0
- - 1.9.3
# Rubygems versions MUST be available as rake tasks
# see Rakefile:125 for the list of possible RGV values
@@ -43,7 +42,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.7.4
+ - RGV=v2.7.7
matrix:
include:
@@ -68,6 +67,8 @@ matrix:
env: RGV=v2.0.14
# Ruby 1.9.3, Rubygems 1.5.3 and up
- rvm: 1.9.3
+ env: RGV=v2.7.7
+ - rvm: 1.9.3
env: RGV=v2.2.5
- rvm: 1.9.3
env: RGV=v2.1.11
diff --git a/Rakefile b/Rakefile
index 18831053a4..b328fb06a2 100644
--- a/Rakefile
+++ b/Rakefile
@@ -144,7 +144,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.14 v2.7.4]
+ 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.7]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|