From: Richard Levitte Date: Mon, 15 Aug 2016 16:45:22 +0000 (+0200) Subject: Make "make" less verbose in Travis, except for the build only case X-Git-Tag: OpenSSL_1_1_0~185 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a4ffbbeef6ccf2f273ecaae3883ae7644ab5b417;p=oweals%2Fopenssl.git Make "make" less verbose in Travis, except for the build only case Reviewed-by: Emilia Käsper --- diff --git a/.travis.yml b/.travis.yml index b1d418ff32..e73a4a050f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -100,25 +100,30 @@ before_script: - cd $top script: + - if [ -z "$BUILDONLY" ]; then + make="make -s"; + else + make="make"; + fi - if [ -n "$DESTDIR" ]; then cd _build; top=..; else top=.; fi - - make update - - make + - $make update + - $make - if [ -z "$BUILDONLY" ]; then if [ -n "$CROSS_COMPILE" ]; then export EXE_SHELL="wine" WINEPREFIX=`pwd`; fi; HARNESS_VERBOSE=yes make test; else - make build_tests; + $make build_tests; fi - if [ -n "$DESTDIR" ]; then mkdir "../$DESTDIR"; - make install install_docs DESTDIR="../$DESTDIR"; + $make install install_docs DESTDIR="../$DESTDIR"; fi - cd $top