6 if [ -z "$ARTIFACT_TYPE" ]; then
7 echo "ERROR: ARTIFACT_TYPE not provided...exiting"
12 echo "Uploading the Apex ${ARTIFACT_TYPE} artifact. This could take some time..."
13 echo "--------------------------------------------------------"
16 # source the opnfv.properties to get ARTIFACT_VERSION
17 source $WORKSPACE/opnfv.properties
19 BUILD_DIRECTORY=${WORKSPACE}/.build
22 # clone releng repository
23 echo "Cloning releng repository..."
24 [ -d releng ] && rm -rf releng
25 git clone https://gerrit.opnfv.org/gerrit/releng $WORKSPACE/releng/ &> /dev/null
26 #this is where we import the siging key
27 if [ -f $WORKSPACE/releng/utils/gpg_import_key.sh ]; then
28 source $WORKSPACE/releng/utils/gpg_import_key.sh
33 for artifact in $RPM_LIST $SRPM_LIST; do
34 echo "Signing artifact: ${artifact}"
35 gpg2 -vvv --batch --yes --no-tty \
36 --default-key opnfv-helpdesk@rt.linuxfoundation.org \
37 --passphrase besteffort \
38 --detach-sig $artifact
39 gsutil cp "$artifact".sig gs://$GS_URL/$(basename "$artifact".sig)
40 echo "Upload complete for ${artifact} signature"
45 gpg2 -vvv --batch --yes --no-tty \
46 --default-key opnfv-helpdesk@rt.linuxfoundation.org \
47 --passphrase besteffort \
48 --detach-sig $BUILD_DIRECTORY/release/OPNFV-CentOS-7-x86_64-$OPNFV_ARTIFACT_VERSION.iso
50 gsutil cp $BUILD_DIRECTORY/release/OPNFV-CentOS-7-x86_64-$OPNFV_ARTIFACT_VERSION.iso.sig gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso.sig
51 echo "ISO signature Upload Complete!"
55 gsutil cp $BUILD_DIRECTORY/release/OPNFV-CentOS-7-x86_64-$OPNFV_ARTIFACT_VERSION.iso gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso > gsutil.iso.log
56 echo "ISO Upload Complete!"
60 for artifact in $RPM_LIST $SRPM_LIST; do
61 echo "Uploading artifact: ${artifact}"
62 gsutil cp $artifact gs://$GS_URL/$(basename $artifact) > gsutil.iso.log
63 echo "Upload complete for ${artifact}"
65 gsutil cp $WORKSPACE/opnfv.properties gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.properties > gsutil.properties.log
66 gsutil cp $WORKSPACE/opnfv.properties gs://$GS_URL/latest.properties > gsutil.latest.log
68 # Make the property files viewable on the artifact site
70 -h "Content-Type:text/html" \
71 -h "Cache-Control:private, max-age=0, no-transform" \
72 gs://$GS_URL/latest.properties \
73 gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.properties > /dev/null 2>&1
77 # Uploads snapshot artifact and updated properties file
78 echo "Uploading snapshot artifacts"
79 SNAP_TYPE=$(echo ${JOB_NAME} | sed -n 's/^apex-\(.\+\)-promote.*$/\1/p')
80 gsutil cp $WORKSPACE/apex-${SNAP_TYPE}-snap-`date +%Y-%m-%d`.tar.gz gs://$GS_URL/ > gsutil.iso.log
81 if [ "$SNAP_TYPE" == 'csit' ]; then
82 gsutil cp $WORKSPACE/snapshot.properties gs://$GS_URL/snapshot.properties > gsutil.latest.log
84 echo "Upload complete for Snapshot"
89 export OPNFV_ARTIFACT_VERSION="dev${GERRIT_CHANGE_NUMBER}${GERRIT_PATCHSET_NUMBER}"
90 echo "Uploading development build tarball"
91 pushd $BUILD_DIRECTORY > /dev/null
92 tar czf apex-${OPNFV_ARTIFACT_VERSION}.tar.gz *.qcow2
93 gsutil cp apex-${OPNFV_ARTIFACT_VERSION}.tar.gz gs://$GS_URL/apex-${OPNFV_ARTIFACT_VERSION}.tar.gz > gsutil.latest.log
97 # Always import the signing key, if it's available the artifacts will be
98 # signed before being uploaded
101 if gpg2 --list-keys | grep "opnfv-helpdesk@rt.linuxfoundation.org"; then
102 echo "Signing Key avaliable"
106 if [ "$ARTIFACT_TYPE" == 'snapshot' ]; then
108 elif [ "$ARTIFACT_TYPE" == 'iso' ]; then
109 if [[ "$ARTIFACT_VERSION" =~ dev ]]; then
110 echo "Skipping artifact upload for ${ARTIFACT_TYPE} due to dev build"
113 if [[ -n "$SIGN_ARTIFACT" && "$SIGN_ARTIFACT" == "true" ]]; then
117 elif [ "$ARTIFACT_TYPE" == 'rpm' ]; then
118 if [[ "$ARTIFACT_VERSION" =~ dev ]]; then
119 echo "dev build detected, will upload image tarball"
120 ARTIFACT_TYPE=tarball
123 RPM_INSTALL_PATH=$BUILD_DIRECTORY/noarch
124 RPM_LIST=$RPM_INSTALL_PATH/$(basename $OPNFV_RPM_URL)
125 VERSION_EXTENSION=$(echo $(basename $OPNFV_RPM_URL) | sed 's/opnfv-apex-//')
126 for pkg in common undercloud; do # removed onos for danube
127 RPM_LIST+=" ${RPM_INSTALL_PATH}/opnfv-apex-${pkg}-${VERSION_EXTENSION}"
129 SRPM_INSTALL_PATH=$BUILD_DIRECTORY
130 SRPM_LIST=$SRPM_INSTALL_PATH/$(basename $OPNFV_SRPM_URL)
131 VERSION_EXTENSION=$(echo $(basename $OPNFV_SRPM_URL) | sed 's/opnfv-apex-//')
132 for pkg in common undercloud; do # removed onos for danube
133 SRPM_LIST+=" ${SRPM_INSTALL_PATH}/opnfv-apex-${pkg}-${VERSION_EXTENSION}"
136 if [[ -n "$SIGN_ARTIFACT" && "$SIGN_ARTIFACT" == "true" ]]; then
142 echo "ERROR: Unknown artifact type ${ARTIFACT_TYPE} to upload...exiting"
147 echo "--------------------------------------------------------"
149 if [ "$ARTIFACT_TYPE" == 'iso' ]; then echo "ISO Artifact is available as http://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso"; fi
150 if [ "$ARTIFACT_TYPE" == 'rpm' ]; then echo "RPM Artifact is available as http://$GS_URL/$(basename $OPNFV_RPM_URL)"; fi
151 if [ "$ARTIFACT_TYPE" == 'tarball' ]; then echo "Dev tarball Artifact is available as http://$GS_URL/apex-${OPNFV_ARTIFACT_VERSION}.tar.gz)"; fi