From 1f879009b6e3bea9bb498f75b3bc072a10b76621 Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Sun, 15 May 2016 12:43:59 -0500 Subject: [PATCH] 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 --- jjb/vpp/include-raw-vpp-build.sh | 5 +++++ jjb/vpp/include-raw-vpp-maven-push.sh | 5 +++++ 2 files changed, 10 insertions(+) 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!" -- 2.16.6