summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-06-26 23:39:15 +0000
committerBundlerbot <bot@bundler.io>2019-06-26 23:39:15 +0000
commit3b10d9714702edcba290c967671a0e201f594938 (patch)
tree3324f27668711565eb310cce61198a544c85e634
parent547975644e93d1c421a468ab5e2396b5b953158b (diff)
parent2ec27ac5e0363b818bd27562cc593674b9dc6011 (diff)
downloadbundler-3b10d9714702edcba290c967671a0e201f594938.tar.gz
Merge #7221
7221: Bump rubygems in CI to 3.0.4 and 2.7.10 r=hsbt a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that we should make sure everything is ok with the most recent rubygems releases. ### What is your fix for the problem, implemented in this PR? My fix is to upgrade the rubygems versions in our CI. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.travis.yml8
-rw-r--r--Rakefile4
2 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index cff8821480..7ed3a6d5cc 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.3 BUNDLER_SPEC_SUB_VERSION=3.0.0
- - RGV=v3.0.3
+ - RGV=v3.0.4 BUNDLER_SPEC_SUB_VERSION=3.0.0
+ - RGV=v3.0.4
jobs:
include:
@@ -52,11 +52,11 @@ jobs:
env: RGV=master
stage: test
- rvm: 2.3.8
- env: RGV=v3.0.3
+ env: RGV=v3.0.4
stage: test
# Ruby 2.5, Rubygems 2.7
- rvm: 2.5.5
- env: RGV=v2.7.9
+ env: RGV=v2.7.10
stage: test
# Ruby 2.4, Rubygems 2.6
- rvm: 2.4.6
diff --git a/Rakefile b/Rakefile
index 00b64638a9..2aec87d06a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -69,7 +69,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.3"
+ sh "gem update --system 3.0.4"
# Install the other gem deps, etc
Rake::Task["spec:deps"].invoke
@@ -107,7 +107,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.9 v3.0.3]
+ releases = %w[v2.5.2 v2.6.14 v2.7.10 v3.0.4]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
task rg do