summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-10 19:23:56 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-10 23:04:06 +0100
commit377f3650243afa145bc1661700757f8d9c7a0328 (patch)
treec36239301d39dd58770da09074293a59516ff5b4
parent641863102dfaa3dc8d2ad6f96e7d28da81e7e95c (diff)
downloadbundler-bump_base_rubygems_and_ruby_2.3_in_travis.tar.gz
Bump Travis entries to use rubygems 2.7.8bump_base_rubygems_and_ruby_2.3_in_travis
-rw-r--r--.travis.yml8
-rw-r--r--Rakefile2
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index b482df574f..ac235db104 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -52,14 +52,14 @@ jobs:
stage: linting
# Ruby 2.5, Rubygems 2.7 and up
- rvm: 2.5.3
- env: RGV=v2.7.7
+ env: RGV=v2.7.8
stage: test
# Ruby 2.4, Rubygems 2.6 and up
- rvm: 2.4.5
env: RGV=v2.6.14
stage: test
- rvm: 2.4.5
- env: RGV=v2.7.7
+ env: RGV=v2.7.8
stage: test
# Ruby 2.3, Rubygems 2.5 and up
- rvm: 2.3.8
@@ -69,7 +69,7 @@ jobs:
env: RGV=v2.6.14
stage: test
- rvm: 2.3.8
- env: RGV=v2.7.7
+ env: RGV=v2.7.8
stage: test
# Ruby-head (we want to know how we're doing, but not fail the build)
- rvm: ruby-head
@@ -77,7 +77,7 @@ jobs:
stage: test
# 1.x mode (we want to keep stuff passing in 1.x mode for now)
- rvm: 2.6.1
- env: RGV=v2.7.7 BUNDLER_SPEC_SUB_VERSION=1.98
+ env: RGV=v2.7.8 BUNDLER_SPEC_SUB_VERSION=1.98
stage: test
allow_failures:
diff --git a/Rakefile b/Rakefile
index 3f1606405e..aba3346f34 100644
--- a/Rakefile
+++ b/Rakefile
@@ -143,7 +143,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w[master]
- releases = %w[v2.5.2 v2.6.14 v2.7.7 v3.0.2]
+ releases = %w[v2.5.2 v2.6.14 v2.7.8 v3.0.2]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|