From: Vitaly Chikunov Date: Sun, 5 Jan 2020 20:24:50 +0000 (+0300) Subject: travis-ci: Fix quietness of building of openssl X-Git-Tag: v3.0.0~237 X-Git-Url: http://wagner.pp.ru/gitweb/?a=commitdiff_plain;h=e3eee4545d1ca455ecb70d47dc6623162aeeccc0;hp=07743c1340bebbaba78525d0d22c9104732c3f1d;p=openssl-gost%2Fengine.git travis-ci: Fix quietness of building of openssl No need for `build.log' as `make -s' will output any failure. Also, redirection was broken anyway since splitting make into two makes with separate `-j' and install phase. Add `travis_wait' to make traves not time-out on slow arches. Reference: https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received Fixes: c38ec7587 ("travis: speed up Travis build") --- diff --git a/.travis.yml b/.travis.yml index 412d20a..85cc035 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,7 +50,7 @@ before_script: - sudo cpanm --notest Test2::V0 > build.log 2>&1 || (cat build.log && exit 1) - git clone --depth 1 -b ${OPENSSL_BRANCH} https://github.com/openssl/openssl.git - cd openssl - - ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} && make -j$(nproc) all && make install_sw > build.log 2>&1 || (cat build.log && exit 1) + - ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} && travis_wait make -s -j$(nproc) all && make -s install_sw - cd .. script: