From: Rich Salz Date: Tue, 4 Jul 2017 22:10:40 +0000 (-0400) Subject: Add echo for each build phase X-Git-Tag: OpenSSL_1_0_2m~65 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1408482587df60662a87943de3f9581dae75ecc0;p=oweals%2Fopenssl.git Add echo for each build phase Port of GH#3842 to 1.0.2 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/3845) --- diff --git a/.travis.yml b/.travis.yml index e5b821787c..c3e035eb39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,8 +50,18 @@ before_script: script: - cd _srcdist - - make - - if [ -z "$CROSS_COMPILE" ]; then make test; fi + - if make ; then + echo -e '+\057 MAKE OK'; + else + echo -e '+\057 MAKE FAILED'; false; + fi; + - if [ -z "$CROSS_COMPILE" ]; then + if make test; then + echo -e '+\057\057 MAKE TEST OK'; + else + echo -e '+\057\057 MAKE TEST FAILED'; false; + fi; + fi - cd .. notifications: