Browse Source

Add echo for each build phase

Port of GH#3842 to 1.0.2

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/3845)
Rich Salz 7 years ago
parent
commit
1408482587
1 changed files with 12 additions and 2 deletions
  1. 12 2
      .travis.yml

+ 12 - 2
.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: