3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 echo "---> make-tar.sh"
19 sudo yum install -y dos2unix
20 # shellcheck source="$WORKSPACE/version.properties" disable=SC1091
21 dos2unix "${WORKSPACE}/version.properties"
22 source "$WORKSPACE/version.properties"
23 TARDIR=$UPLOAD_FILES_PATH
25 # STAGING_BUILD (below) may be unset
26 set -e +u -x -o pipefail
29 if [ -n "$STAGING_BUILD" ]
31 # Remove the "-SNAPSHOT" from the version for a staging build
32 VERSION=$(echo "$VERSION" | sed 's/-SNAPSHOT//')
34 # Make sure the version has the "-SNAPSHOT" on the end for other builds
35 [[ ! "$VERSION" =~ -SNAPSHOT$ ]] && VERSION="${VERSION}-SNAPSHOT"
38 # STAGING_BUILD not used past this point
41 if [ "$PROJECT" == "addon-onap" ]
44 # Make sure $TARDIR is an absolute path
46 [[ "$TARDIR" != /* ]] && TARDIR="$PWD/$TARDIR"
48 # ONAP addon is special.
49 # Build the regional controller scripts tar ball
50 ARTIFACT_NAME="onap-amsterdam-regional-controller-${STREAM}"
51 TAR_NAME="${ARTIFACT_NAME}-${VERSION}.tgz"
52 echo "---> Making tar file ${TARDIR}/${TAR_NAME}"
53 cd ./src/regional_controller_scripts/
54 tar -cvzf "${TARDIR}/${TAR_NAME}" -- *
56 # Build the ONAP VM scripts tar ball
57 ARTIFACT_NAME="onap-amsterdam-VM-${STREAM}"
58 TAR_NAME="${ARTIFACT_NAME}-${VERSION}.tgz"
59 echo "---> Making tar file ${TARDIR}/${TAR_NAME}"
60 cd ../onap_vm_scripts/
61 tar -cvzf "${TARDIR}/${TAR_NAME}" -- *
65 TAR_NAME="${PROJECT}-${VERSION}.tgz"
66 echo "---> Making tar file ${TARDIR}/${TAR_NAME}"
67 # Put the file in /tmp initially to prevent it $TARDIR from going into the tar file
68 tar -cvzf "/tmp/${TAR_NAME}" -- *
70 cp "/tmp/${TAR_NAME}" "${TARDIR}/${TAR_NAME}"
74 echo "-----> Sign all artifacts"
75 lftools sign sigul "${TARDIR}"