From e4aa805aba268d9bdaacc30a0fa43069189dcf0e Mon Sep 17 00:00:00 2001 From: Luca Toscano Date: Sun, 22 Dec 2019 10:30:59 +0000 Subject: [PATCH] test/travis_before_linux.sh: add a simple bash retry to svn export Sometimes a build is killed by Travis due to svn export taking a long time to complete (> 10m). This change should be a test to see if a simple workaround reduces the noise to the dev@ mailing list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1871907 13f79535-47bb-0310-9956-ffa450edef68 --- test/travis_before_linux.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh index 94287947c13..c31d207f7a6 100755 --- a/test/travis_before_linux.sh +++ b/test/travis_before_linux.sh @@ -1,6 +1,13 @@ #!/bin/bash -ex if ! test -v SKIP_TESTING; then - svn export -q https://svn.apache.org/repos/asf/httpd/test/framework/trunk test/perl-framework + # Use a rudimental retry workflow as workaround to svn export hanging for minutes. + # Travis automatically kills a build if one step takes more than 10 minutes without + # reporting any progress. + for i in {1..5} + do + timeout 60 svn export -q https://svn.apache.org/repos/asf/httpd/test/framework/trunk test/perl-framework + if [ $? -eq 0 ]; then break; else sleep 120; fi + done fi function install_apx() { -- 2.47.3