diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-05-15 12:43:59 -0500 |
---|---|---|
committer | C.J. Collier <cjcollier@linuxfoundation.org> | 2016-05-16 19:57:43 +0000 |
commit | 1f879009b6e3bea9bb498f75b3bc072a10b76621 (patch) | |
tree | 7560aaf3b65a23d143244599091ac85f81cb9fa0 /jjb/vpp | |
parent | 59a041e679eb4af1e2a534c4dfb234c2fa26279a (diff) |
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 <eaw@cisco.com>
Diffstat (limited to 'jjb/vpp')
-rw-r--r-- | jjb/vpp/include-raw-vpp-build.sh | 5 | ||||
-rw-r--r-- | jjb/vpp/include-raw-vpp-maven-push.sh | 5 |
2 files changed, 10 insertions, 0 deletions
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!" |