blob: ed7897b8e74593b0ba1b7bd53e5abffb8084ace1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2016 Ericsson AB and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o pipefail
echo "Host info: $(hostname) $(hostname -I)"
# Configurable environment variables:
# ISOSTORE (/iso_mount/opnfv_ci)
if [[ "$JOB_NAME" =~ "merge" ]]; then
echo "Downloading http://$GS_URL/opnfv-gerrit-$GERRIT_CHANGE_NUMBER.properties"
# get the properties file for the Armband Fuel ISO built for a merged change
curl -f -s -o $WORKSPACE/latest.properties http://$GS_URL/opnfv-gerrit-$GERRIT_CHANGE_NUMBER.properties
else
# get the latest.properties file in order to get info regarding latest artifact
echo "Downloading http://$GS_URL/latest.properties"
curl -f -s -o $WORKSPACE/latest.properties http://$GS_URL/latest.properties
fi
# source the file so we get artifact metadata, it will exit if it doesn't exist
source latest.properties
# echo the info about artifact that is used during the deployment
OPNFV_ARTIFACT=${OPNFV_ARTIFACT_URL/*\/}
echo "Using $OPNFV_ARTIFACT for deployment"
# Releng doesn't want us to use anything but opnfv.iso for now. We comply.
ISO_FILE=${WORKSPACE}/opnfv.iso
# using ISOs for verify & merge jobs from local storage will be enabled later
if [[ ! "$JOB_NAME" =~ (verify|merge) ]]; then
# check if we already have the ISO to avoid redownload
ISOSTORE=${ISOSTORE:-/iso_mount/opnfv_ci}/${GIT_BRANCH##*/}
if [[ -f "$ISOSTORE/$OPNFV_ARTIFACT" ]]; then
echo "ISO exists locally. Skipping the download and using the file from ISO store"
ln -s $ISOSTORE/$OPNFV_ARTIFACT ${ISO_FILE}
echo "--------------------------------------------------------"
echo
ls -al ${ISO_FILE}
echo
echo "--------------------------------------------------------"
echo "Done!"
exit 0
fi
fi
# Use gsutils if available
if $(which gsutil &>/dev/null); then
DOWNLOAD_URL="gs://$OPNFV_ARTIFACT_URL"
CMD="gsutil cp ${DOWNLOAD_URL} ${ISO_FILE}"
else
# download image
# -f returns error if the file was not found or on server error
DOWNLOAD_URL="http://$OPNFV_ARTIFACT_URL"
CMD="curl -f -s -o ${ISO_FILE} ${DOWNLOAD_URL}"
fi
# log info to console
echo "Downloading the $INSTALLER_TYPE artifact using URL $DOWNLOAD_URL"
echo "This could take some time..."
echo "--------------------------------------------------------"
echo "$CMD"
$CMD
echo "--------------------------------------------------------"
echo "Done!"
|