Merge "update 5g-mec-cloud-gaming jobs to Jenkins"
[ci-management.git] / jjb / shell / make-tar.sh
1 #!/bin/bash -l
2 #
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 #
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
8 #
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
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.
16
17 echo "---> make-tar.sh"
18
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
24
25 # STAGING_BUILD (below) may be unset
26 set -e +u -x -o pipefail
27 rm -fr "$TARDIR"
28
29 if [ -n "$STAGING_BUILD" ]
30 then
31     # Remove the "-SNAPSHOT" from the version for a staging build
32     VERSION=$(echo "$VERSION" | sed 's/-SNAPSHOT//')
33 else
34     # Make sure the version has the "-SNAPSHOT" on the end for other builds
35     [[ ! "$VERSION" =~ -SNAPSHOT$ ]] && VERSION="${VERSION}-SNAPSHOT"
36 fi
37
38 # STAGING_BUILD not used past this point
39 set -u
40
41 if [ "$PROJECT" == "addon-onap" ]
42 then
43
44     # Make sure $TARDIR is an absolute path
45     mkdir "$TARDIR"
46     [[ "$TARDIR" != /* ]] && TARDIR="$PWD/$TARDIR"
47
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}" -- *
55
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}" -- *
62
63 else
64
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}" -- *
69     mkdir "$TARDIR"
70     cp "/tmp/${TAR_NAME}" "${TARDIR}/${TAR_NAME}"
71
72 fi
73
74 echo "-----> Sign all artifacts"
75 lftools sign sigul "${TARDIR}"
76
77 set +u +x