summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-08-17 20:40:08 +0000
committerBundlerbot <bot@bundler.io>2019-08-17 20:40:08 +0000
commit0b9ae15d73693872749e0c03c905b1bdcd1e9b7c (patch)
tree585de2b91f50c2bc5b3a6453f3077acc3fa62c02
parent3f75e0385475107f9abb31af086ad5d6974a24b2 (diff)
parent7fba99adf77cecd8450f73791343ddabe4d9c14f (diff)
downloadbundler-0b9ae15d73693872749e0c03c905b1bdcd1e9b7c.tar.gz
Merge #7311
7311: Use the latest rubygems 3.0.6 in CI r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that [rubygems 3.0.6 was released](https://blog.rubygems.org/2019/08/16/3.0.6-released.html), and we haven't yet tested against it. ### What is your fix for the problem, implemented in this PR? My fix is to use the new rubygems in CI. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.travis.yml6
-rw-r--r--Rakefile4
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 3d2a321215..52591a022c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,8 +39,8 @@ env:
- RGV=master BUNDLER_SPEC_SUB_VERSION=3.0.0
- RGV=master
# Test the latest rubygems release with all of our supported rubies
- - RGV=v3.0.4 BUNDLER_SPEC_SUB_VERSION=3.0.0
- - RGV=v3.0.4
+ - RGV=v3.0.6 BUNDLER_SPEC_SUB_VERSION=3.0.0
+ - RGV=v3.0.6
jobs:
include:
@@ -52,7 +52,7 @@ jobs:
env: RGV=master
stage: test
- rvm: 2.3.8
- env: RGV=v3.0.4
+ env: RGV=v3.0.6
stage: test
# Ruby 2.5, Rubygems 2.7
- rvm: 2.5.5
diff --git a/Rakefile b/Rakefile
index b2a630090e..3399f4dd25 100644
--- a/Rakefile
+++ b/Rakefile
@@ -51,7 +51,7 @@ namespace :spec do
sh "sudo apt-get install graphviz -y"
# Install the gems with a consistent version of RubyGems
- sh "gem update --system 3.0.4"
+ sh "gem update --system 3.0.6"
# Install the other gem deps, etc
Rake::Task["spec:deps"].invoke
@@ -89,7 +89,7 @@ namespace :spec do
namespace :rubygems do
# When editing this list, also edit .travis.yml!
branches = %w[master]
- releases = %w[v2.5.2 v2.6.14 v2.7.10 v3.0.4]
+ releases = %w[v2.5.2 v2.6.14 v2.7.10 v3.0.6]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
task rg do