From: Ed Warnicke Date: Sun, 15 May 2016 17:43:59 +0000 (-0500) Subject: Provide clarity as to when merge job fails are build or push X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=1f879009b6e3bea9bb498f75b3bc072a10b76621;p=ci-management.git Provide clarity as to when merge job fails are build or push 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 --- diff --git a/jjb/vpp/include-raw-vpp-build.sh b/jjb/vpp/include-raw-vpp-build.sh index 05d6d5d74..97330ae09 100644 --- a/jjb/vpp/include-raw-vpp-build.sh +++ b/jjb/vpp/include-raw-vpp-build.sh @@ -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 diff --git a/jjb/vpp/include-raw-vpp-maven-push.sh b/jjb/vpp/include-raw-vpp-maven-push.sh index 22c4a3223..acde5afaf 100644 --- a/jjb/vpp/include-raw-vpp-maven-push.sh +++ b/jjb/vpp/include-raw-vpp-maven-push.sh @@ -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!"