[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Tue Jul 4 22:29:45 UTC 2017
The branch OpenSSL_1_0_2-stable has been updated
via 1408482587df60662a87943de3f9581dae75ecc0 (commit)
from 953a1665e2a3ea0423f3deb2a71972486d0ee61e (commit)
- Log -----------------------------------------------------------------
commit 1408482587df60662a87943de3f9581dae75ecc0
Author: Rich Salz <rsalz at openssl.org>
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 <paul.dale at oracle.com>
(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:
More information about the openssl-commits
mailing list