From 1408482587df60662a87943de3f9581dae75ecc0 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 4 Jul 2017 18:10:40 -0400 Subject: [PATCH] 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) --- .travis.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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: -- 2.25.1