Provide clarity as to when merge job fails are build or push 27/1127/2
authorEd Warnicke <eaw@cisco.com>
Sun, 15 May 2016 17:43:59 +0000 (12:43 -0500)
committerC.J. Collier <cjcollier@linuxfoundation.org>
Mon, 16 May 2016 19:57:43 +0000 (19:57 +0000)
Merge jobs can fail because a build has failed, or because
a push of artifacts has failed.  This should make
it clear which occurrred in the build logs.

Change-Id: I77e2ed0c756104492ee7a16378a5445162406f40
Signed-off-by: Ed Warnicke <eaw@cisco.com>
jjb/vpp/include-raw-vpp-build.sh
jjb/vpp/include-raw-vpp-maven-push.sh

index 05d6d5d..97330ae 100644 (file)
@@ -54,3 +54,8 @@ if [ ${OS} == ubuntu1404 ];then
 fi
 
 build-root/vagrant/build.sh
+if [ $? == 0 ];then
+    echo "*******************************************************************"
+    echo "* VPP BUILD SUCCESSFULLY COMPLETED"
+    echo "*******************************************************************"
+fi
\ No newline at end of file
index 22c4a32..acde5af 100644 (file)
@@ -1,5 +1,10 @@
 #!/bin/bash
 
+echo "*******************************************************************"
+echo "* STARTING PUSH OF PACKAGES TO REPOS"
+echo "* NOTHING THAT HAPPENS BELOW THIS POINT IS RELATED TO BUILD FAILURE"
+echo "*******************************************************************"
+
 # Determine the path to maven
 if [ -z "${MAVEN_SELECTOR}" ]; then
     echo "ERROR: No Maven install detected!"