blob: 211d282d324def115df03f4ede977e838ab64f4d (
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
74
75
|
#!/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 nounset
set -o pipefail
cd $WORKSPACE/xci
# for daily jobs, we want to use working versions
# for periodic jobs, we will use whatever is set in the job, probably master
if [[ "$XCI_LOOP" == "daily" ]]; then
# source pinned-vars to get releng version
source ./config/pinned-versions
# checkout the version
git checkout -q $OPNFV_RELENG_VERSION
echo "Info: Using $OPNFV_RELENG_VERSION"
elif [[ "$XCI_LOOP" == "periodic" ]]; then
echo "Info: Using $OPNFV_RELENG_VERSION"
fi
# this is just an example to give the idea about what we need to do
# so ignore this part for the timebeing as we need to adjust xci-deploy.sh
# to take this into account while deploying anyways
# clone openstack-ansible
# stable/ocata already use pinned versions so this is only valid for master
if [[ "$XCI_LOOP" == "periodic" && "$OPENSTACK_OSA_VERSION" == "master" ]]; then
cd $WORKSPACE
# get the url to openstack-ansible git
source ./config/env-vars
echo "Info: Capture the ansible role requirement versions before doing anything"
git clone -q $OPENSTACK_OSA_GIT_URL
cd openstack-ansible
cat ansible-role-requirements.yml | while IFS= read -r line
do
if [[ $line =~ "src:" ]]; then
repo_url=$(echo $line | awk {'print $2'})
repo_sha1=$(git ls-remote $repo_url $OPENSTACK_OSA_VERSION | awk {'print $1'})
fi
echo "$line" | sed -e "s|master|$repo_sha1|" >> opnfv-ansible-role-requirements.yml
done
echo "Info: SHA1s of ansible role requirements"
echo "-------------------------------------------------------------------------"
cat opnfv-ansible-role-requirements.yml
echo "-------------------------------------------------------------------------"
fi
# proceed with the deployment
cd $WORKSPACE/xci
./xci-deploy.sh
if [[ "$JOB_NAME" =~ "periodic" && "$OPENSTACK_OSA_VERSION" == "master" ]]; then
# if we arrived here without failing, it means we have something we can pin
# this is again here to show the intention
cd $WORKSPACE/openstack-ansible
OSA_GIT_SHA1=$(git rev-parse HEAD)
# log some info
echo -e "\n"
echo "***********************************************************************"
echo "* OSA SHA1 TO PIN *"
echo "* *"
echo " $OSA_GIT_SHA1"
echo "* *"
echo "***********************************************************************"
fi
echo -e "\n"
|