X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ci-management.git;a=blobdiff_plain;f=jjb%2Fshell%2Fmake-tar.sh;fp=jjb%2Fshell%2Fmake-tar.sh;h=6d36f0aa19bdc555176bdb7aa4a2072596d90f8b;hp=0000000000000000000000000000000000000000;hb=edad36dc93062a39f7f9b5726abed94a2d2db032;hpb=d4c37b3fdfbfb86b53717bd8c8d33900bcfaaf6e diff --git a/jjb/shell/make-tar.sh b/jjb/shell/make-tar.sh new file mode 100644 index 0000000..6d36f0a --- /dev/null +++ b/jjb/shell/make-tar.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +source $WORKSPACE/version.properties +TAR_NAME="${PROJECT}-${VERSION}.tgz" +TARDIR=$UPLOAD_FILES_PATH + +set -e -u -x -o pipefail +rm -fr $TARDIR +mkdir $TARDIR + +if [ "$PROJECT" == "addon-onap" ] +then + + # 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}.tgz" + cd ./src/regional_controller_scripts/ + tar -cvzf ${TARDIR}/${ARTIFACT_NAME}.tgz * + + # Build the ONAP VM scripts tar ball + ARTIFACT_NAME="onap-amsterdam-VM-master" + echo "Making tar file ${TARDIR}/${ARTIFACT_NAME}.tgz" + cd ../onap_vm_scripts/ + tar -cvzf ${TARDIR}/${ARTIFACT_NAME}.tgz * + +else + + echo "Making tar file ${TARDIR}/${TAR_NAME}" + tar -cvzf ${TARDIR}/${TAR_NAME} * + +fi +set +u +x \ No newline at end of file