summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-08-21 13:16:24 +0000
committerBundlerbot <bot@bundler.io>2019-08-21 13:16:24 +0000
commitddb6b31e6c320c46831c868376af41c1e09ecbbc (patch)
tree224d84a6ad3dc1e498de520d720619247dc3e506
parentd63efd91dc2cf075a5a047dfb2fa18555a58536d (diff)
parent636a3eee2f7cdd28917f19d6d14611800f745d7a (diff)
downloadbundler-ddb6b31e6c320c46831c868376af41c1e09ecbbc.tar.gz
Merge #7321
7321: Don't (yet) enable parallelization in CI r=bronzdoc a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that unfortunately #7317 broken rubygems test suite. See https://github.com/rubygems/rubygems/pull/2888. ### What was your diagnosis of the problem? My diagnosis was that it has some issues. ### What is your fix for the problem, implemented in this PR? My fix is to not (yet) use it in CI, so we can keep using it locally and investigating these issues without interfering with our CI. In a while we reevaluate how it is working a consider enabling in CI. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index f02a552ff8..36d313d177 100644
--- a/Rakefile
+++ b/Rakefile
@@ -146,7 +146,9 @@ namespace :spec do
ENV["BUNDLER_SPEC_PRE_RECORDED"] = "TRUE"
puts "\n\e[1;33m[Travis CI] Running bundler specs against RubyGems #{rg}\e[m\n\n"
- specs = safe_task { Rake::Task["spec:rubygems:parallel_#{rg}"].invoke }
+ specs = safe_task { Rake::Task["spec:rubygems:#{rg}"].invoke }
+
+ Rake::Task["spec:rubygems:#{rg}"].reenable
puts "\n\e[1;33m[Travis CI] Running bundler sudo specs against RubyGems #{rg}\e[m\n\n"
sudos = system("sudo -E rake spec:rubygems:#{rg}:sudo")