The branch OpenSSL_1_0_2-stable has been updated
via 1408482587df60662a87943de3f9581dae75ecc0 (commit)
from 953a1665e2a3ea0423f3deb2a71972486d0ee61e (commit)
- Log -----------------------------------------------------------------
commit 1408482587df60662a87943de3f9581dae75ecc0
Author: Rich Salz <[email protected]>
Date: Tue Jul 4 18:10:40 2017 -0400
Add echo for each build phase
Port of GH#3842 to 1.0.2
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/3845)
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index e5b8217..c3e035e 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:
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits