summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-11-12 12:10:25 +0000
committerBundlerbot <bot@bundler.io>2019-11-12 12:10:25 +0000
commitfb17e293c627ae15c9b6afd43bc7cf9754689917 (patch)
tree77574e1632746bf57e19914d0d535a0497e608a4
parent2f93a0d8a464b38f6b60b5707fa7f55603581994 (diff)
parent52ef0f332b77e6ea9be0f57534e1623f648af93e (diff)
downloadbundler-fb17e293c627ae15c9b6afd43bc7cf9754689917.tar.gz
Merge #7438
7438: Add missing `travis_retry`'s to TravisCI config r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that CI failed in #7437 due to a network issue. ### What was your diagnosis of the problem? My diagnosis was that we should add `travis_retry` in the task that failed and other short tasks that may touch the network. ### What is your fix for the problem, implemented in this PR? My fix is to do just that. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 7ba8426112..47e775cba7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,8 +2,8 @@ language: ruby
dist: bionic
script: bin/rake spec:travis
before_script:
- - gem install rake:"~> 12.0"
- - bin/rake override_version
+ - travis_retry gem install rake:"~> 12.0"
+ - travis_retry bin/rake override_version
- travis_retry bin/rake spec:travis:deps
- bin/rake man:check