summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-19 21:42:31 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-19 23:31:02 +0100
commite3a47f1ff5d3b83ac188c9acd6a7bbf612205a8e (patch)
tree7fffc01d7c5d31e3ac6a14fa29e2aff24b956b05
parentd02da0d81b4c75517e41a0baa8742ffed9d77288 (diff)
downloadbundler-e3a47f1ff5d3b83ac188c9acd6a7bbf612205a8e.tar.gz
Merge #7509
7509: Add `travis_retry` to apt-get operation r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was another failed build due to [apt-get install failing](https://travis-ci.org/bundler/bundler/jobs/627348743). ### What was your diagnosis of the problem? My diagnosis was TravisCI networking is unstable at the moment. ### What is your fix for the problem, implemented in this PR? Not a permanent fix, since that doesn't depend on us, but using `travis_retry` should increase reliability. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net> (cherry picked from commit 6ab5f479ae7e53e0833a342fb4129ae3952b049e)
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3f0ed68fdd..14091cadea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,7 @@ before_script:
- bin/rake man:check
- if [ "$BUNDLER_SPEC_SUB_VERSION" = "" ];
then
- sudo apt-get install graphviz -y;
+ travis_retry sudo apt-get install graphviz -y;
fi
- if [ "$TRAVIS_RUBY_VERSION" = "2.3.8" ];
then