summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-19 21:42:31 +0000
committerBundlerbot <bot@bundler.io>2019-12-19 21:42:31 +0000
commit6ab5f479ae7e53e0833a342fb4129ae3952b049e (patch)
treeddd1acc774e7b9e661c7636a39b04135c1554a0a
parenteada59b3d37d6f2f1a05b2d8052a499dfb8fd222 (diff)
parentc3b933ea1d154f256d177b03fc62d5156c8142cc (diff)
downloadbundler-6ab5f479ae7e53e0833a342fb4129ae3952b049e.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>
-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