X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ci-management.git;a=blobdiff_plain;f=jjb%2Fshell%2Fmake-tar.sh;h=adc830d010d294093178f2cbf2f516665e9c7850;hp=76d730dca4b7919b8ce3faafaca2db4c5e03d7b3;hb=683452330b0784c355d032aae4454674d7fdc60e;hpb=44fd63c499c0a7d3a9dbb534aab66ca38d46f456 diff --git a/jjb/shell/make-tar.sh b/jjb/shell/make-tar.sh index 76d730d..adc830d 100644 --- a/jjb/shell/make-tar.sh +++ b/jjb/shell/make-tar.sh @@ -20,9 +20,9 @@ dos2unix "${WORKSPACE}/version.properties" source "$WORKSPACE/version.properties" TARDIR=$UPLOAD_FILES_PATH -set -e -u -x -o pipefail +# STAGING_BUILD (below) may be unset +set -e +u -x -o pipefail rm -fr "$TARDIR" -mkdir "$TARDIR" if [ -n "$STAGING_BUILD" ] then @@ -33,9 +33,16 @@ else [[ ! "$VERSION" =~ -SNAPSHOT$ ]] && VERSION="${VERSION}-SNAPSHOT" fi +# STAGING_BUILD not used past this point +set -u + if [ "$PROJECT" == "addon-onap" ] then + # Make sure $TARDIR is an absolute path + mkdir "$TARDIR" + [[ "$TARDIR" != /* ]] && TARDIR="$PWD/$TARDIR" + # ONAP addon is special. # Build the regional controller scripts tar ball ARTIFACT_NAME="onap-amsterdam-regional-controller-${STREAM}" @@ -55,7 +62,10 @@ else TAR_NAME="${PROJECT}-${VERSION}.tgz" echo "Making tar file ${TARDIR}/${TAR_NAME}" - tar -cvzf "${TARDIR}/${TAR_NAME}" -- * + # Put the file in /tmp initially to prevent it $TARDIR from going into the tar file + tar -cvzf "/tmp/${TAR_NAME}" -- * + mkdir "$TARDIR" + cp "/tmp/${TAR_NAME}" "${TARDIR}/${TAR_NAME}" fi set +u +x