summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-11-12 12:10:25 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-11-12 14:07:39 +0100
commit9891946c444b134d948667913852da687764a896 (patch)
tree93bf28caa9fef5245665219695930db9007be5f1
parentc9b1e94e765bca358c18af02c3a8b0364a0d5e66 (diff)
downloadbundler-9891946c444b134d948667913852da687764a896.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> (cherry picked from commit fb17e293c627ae15c9b6afd43bc7cf9754689917)
-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