aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-08-15 18:45:22 +0200
committerRichard Levitte <levitte@openssl.org>2016-08-16 10:38:45 +0200
commita4ffbbeef6ccf2f273ecaae3883ae7644ab5b417 (patch)
tree0e79104ae6b2916fe8c1188d48d784df0ef39501
parent66bcba145740e4f1210499ba6e5033035a2a4647 (diff)
downloadopenssl-a4ffbbeef6ccf2f273ecaae3883ae7644ab5b417.tar.gz
Make "make" less verbose in Travis, except for the build only case
Reviewed-by: Emilia Käsper <emilia@openssl.org>
-rw-r--r--.travis.yml13
1 files changed, 9 insertions, 4 deletions
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