]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: travis: proper group output redirection together with travis_wait
authorIlya Shipitsin <chipitsine@gmail.com>
Tue, 17 Mar 2020 15:57:25 +0000 (20:57 +0500)
committerWilly Tarreau <w@1wt.eu>
Wed, 18 Mar 2020 08:40:52 +0000 (09:40 +0100)
travis_wait is bash function, it was wrongly grouped with output
redirection which leads to ARM64 builds errors last week

.travis.yml

index ec71fc806f677908b7b4a4b5e500311851c4cc0e..73b293dc5a926dd1ed3ce5fc88ee5ce1d3b7f5a9 100644 (file)
@@ -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