From: Ilya Shipitsin Date: Tue, 17 Mar 2020 15:57:25 +0000 (+0500) Subject: CI: travis: proper group output redirection together with travis_wait X-Git-Tag: v2.2-dev5~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1df9b98400d17acfd5bd72ef9d540fcb8e00e74c;p=thirdparty%2Fhaproxy.git CI: travis: proper group output redirection together with travis_wait travis_wait is bash function, it was wrongly grouped with output redirection which leads to ARM64 builds errors last week --- diff --git a/.travis.yml b/.travis.yml index ec71fc806f..73b293dc5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,7 +102,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 scripts/build-ssl.sh > build-ssl.log 2>&1 || (cat build-ssl.log && exit 1) + - travis_wait 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