From 106ffc63482d1c739435e79cbaf352d9cd6e16c3 Mon Sep 17 00:00:00 2001 From: Fatih Degirmenci Date: Tue, 22 Dec 2015 01:43:40 +0100 Subject: Skip artifact upload if nothing new is built Change-Id: I966229199d07c44073247ae25e9423fda516f73d Signed-off-by: Fatih Degirmenci --- jjb/fuel/fuel-upload-artifact.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'jjb/fuel/fuel-upload-artifact.sh') diff --git a/jjb/fuel/fuel-upload-artifact.sh b/jjb/fuel/fuel-upload-artifact.sh index 5d3fed60b..fc350235e 100755 --- a/jjb/fuel/fuel-upload-artifact.sh +++ b/jjb/fuel/fuel-upload-artifact.sh @@ -3,6 +3,13 @@ set -o errexit set -o nounset set -o pipefail +# check if we built something +if [ -f $WORKSPSACE/.noupload ]; then + echo "Nothing new to upload. Exiting." + /bin/rm -f $WORKSPSACE/.noupload + exit 0 +fi + # log info to console echo "Uploading the $INSTALLER_TYPE artifact. This could take some time..." echo "--------------------------------------------------------" -- cgit 1.2.3-korg