]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: travis-ci: extend the build time for SSL to 60 minutes
authorWilly Tarreau <w@1wt.eu>
Fri, 8 May 2020 12:18:50 +0000 (14:18 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 8 May 2020 12:18:50 +0000 (14:18 +0200)
As discussed in the thread below we're still facing build timeouts
on Travis on aarch64 and the truncated logs doesn't help. It's not
PCRE2 so let's try to extend the permitted time to build the SSL
lib.

   https://www.mail-archive.com/haproxy@formilux.org/msg37251.html

.travis.yml

index 59f3450fbea7fdf924dbd05f733b5259e7151bb4..08a8992d11341608be663975d8f8b25c40a37c33 100644 (file)
@@ -113,7 +113,7 @@ install:
   - git clone https://github.com/VTest/VTest.git ../vtest
   # Special flags due to: https://github.com/vtest/VTest/issues/12
   - make -C ../vtest FLAGS="-O2 -s -Wall"
-  - travis_wait bash -c 'scripts/build-ssl.sh >build-ssl.log 2>&1' || (cat build-ssl.log && exit 1)
+  - travis_wait 60 bash -c 'scripts/build-ssl.sh >build-ssl.log 2>&1' || (cat build-ssl.log && exit 1)
 
 script:
   - if [ "${CC%-*}"  = "clang" ]; then export FLAGS="$FLAGS USE_OBSOLETE_LINKER=1" DEBUG_CFLAGS="-g -fsanitize=address" LDFLAGS="-fsanitize=address"; fi