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=68951af89ff0bc16dfce5cad62df40489479d6a2;hb=683452330b0784c355d032aae4454674d7fdc60e;hpb=5ae9f5758344f6cb934c2078dda13174e723d64a diff --git a/jjb/shell/make-tar.sh b/jjb/shell/make-tar.sh index 68951af..adc830d 100644 --- a/jjb/shell/make-tar.sh +++ b/jjb/shell/make-tar.sh @@ -14,36 +14,58 @@ # See the License for the specific language governing permissions and # limitations under the License. +sudo yum install -y dos2unix # shellcheck source="$WORKSPACE/version.properties" disable=SC1091 dos2unix "${WORKSPACE}/version.properties" source "$WORKSPACE/version.properties" -TAR_NAME="${PROJECT}-${VERSION}-SNAPSHOT.tgz" 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 + # Remove the "-SNAPSHOT" from the version for a staging build + VERSION=$(echo "$VERSION" | sed 's/-SNAPSHOT//') +else + # Make sure the version has the "-SNAPSHOT" on the end for other builds + [[ ! "$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-master" - echo "Making tar file ${TARDIR}/${ARTIFACT_NAME}${VERSION}-SNAPSHOT.tgz" + ARTIFACT_NAME="onap-amsterdam-regional-controller-${STREAM}" + TAR_NAME="${ARTIFACT_NAME}-${VERSION}.tgz" + echo "Making tar file ${TARDIR}/${TAR_NAME}" cd ./src/regional_controller_scripts/ - tar -cvzf "${TARDIR}/${ARTIFACT_NAME}-${VERSION}-SNAPSHOT.tgz" -- * + tar -cvzf "${TARDIR}/${TAR_NAME}" -- * # Build the ONAP VM scripts tar ball - ARTIFACT_NAME="onap-amsterdam-VM-master" - echo "Making tar file ${TARDIR}/${ARTIFACT_NAME}-${VERSION}-SNAPSHOT.tgz" + ARTIFACT_NAME="onap-amsterdam-VM-${STREAM}" + TAR_NAME="${ARTIFACT_NAME}-${VERSION}.tgz" + echo "Making tar file ${TARDIR}/${TAR_NAME}" cd ../onap_vm_scripts/ - tar -cvzf "${TARDIR}/${ARTIFACT_NAME}-${VERSION}-SNAPSHOT.tgz" -- * + tar -cvzf "${TARDIR}/${TAR_NAME}" -- * 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