dbe39762cfa9cfec8bf9b296d18e4a2bb0cc9d95
[releng.git] / jjb / infra / bifrost-verify.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -o errexit
11 set -o nounset
12 set -o pipefail
13
14 trap cleanup_and_upload EXIT
15
16 function upload_logs() {
17     BIFROST_CONSOLE_LOG="${BUILD_URL}/consoleText"
18     BIFROST_GS_URL=${BIFROST_LOG_URL/http:/gs:}
19
20     echo "Uploading build logs to ${BIFROST_LOG_URL}"
21
22     echo "Uploading console output"
23     curl -s -L ${BIFROST_CONSOLE_LOG} > ${WORKSPACE}/build_log.txt
24     gsutil -q cp -Z ${WORKSPACE}/build_log.txt ${BIFROST_GS_URL}/build_log.txt
25     rm ${WORKSPACE}/build_log.txt
26
27     [[ ! -d ${WORKSPACE}/logs ]] && exit 0
28
29     pushd ${WORKSPACE}/logs/ &> /dev/null
30     for x in *.log; do
31         echo "Compressing and uploading $x"
32         gsutil -q cp -Z ${x} ${BIFROST_GS_URL}/${x}
33     done
34
35     echo "Generating the landing page"
36     cat > index.html <<EOF
37 <html>
38 <h1>Build results for <a href=https://$GERRIT_NAME/#/c/$GERRIT_CHANGE_NUMBER/$GERRIT_PATCHSET_NUMBER>$GERRIT_NAME/$GERRIT_CHANGE_NUMBER/$GERRIT_PATCHSET_NUMBER</a></h1>
39 <h2>Job: $JOB_NAME</h2>
40 <ul>
41 <li><a href=${BIFROST_LOG_URL}/build_log.txt>build_log.txt</a></li>
42 EOF
43
44     for x in *.log; do
45         echo "<li><a href=${BIFROST_LOG_URL}/${x}>${x}</a></li>" >> index.html
46     done
47
48     cat >> index.html << EOF
49 </ul>
50 </html>
51 EOF
52
53     gsutil -q cp index.html ${BIFROST_GS_URL}/index.html
54
55     rm index.html
56
57     popd &> /dev/null
58 }
59
60 function fix_ownership() {
61     if [ -z "${JOB_URL+x}" ]; then
62         echo "Not running as part of Jenkins. Handle the logs manually."
63     else
64         # Make sure cache exists
65         [[ ! -d ${HOME}/.cache ]] && mkdir ${HOME}/.cache
66
67         sudo chown -R jenkins:jenkins $WORKSPACE
68         sudo chown -R jenkins:jenkins ${HOME}/.cache
69     fi
70 }
71
72 function cleanup_and_upload() {
73     original_exit=$?
74     fix_ownership
75     upload_logs
76     exit $original_exit
77 }
78
79 # check distro to see if we support it
80 if [[ ! "$DISTRO" =~ (trusty|centos7|suse) ]]; then
81     echo "Distro $DISTRO is not supported!"
82     exit 1
83 fi
84
85 # remove previously cloned repos
86 sudo /bin/rm -rf /opt/bifrost /opt/puppet-infracloud /opt/stack /opt/releng
87
88 # Fix up permissions
89 fix_ownership
90
91 # clone all the repos first and checkout the patch afterwards
92 sudo git clone https://git.openstack.org/openstack/bifrost /opt/bifrost
93 sudo git clone https://git.openstack.org/openstack-infra/puppet-infracloud /opt/puppet-infracloud
94 sudo git clone https://gerrit.opnfv.org/gerrit/releng /opt/releng
95
96 # checkout the patch
97 cd $CLONE_LOCATION
98 sudo git fetch $PROJECT_REPO $GERRIT_REFSPEC && sudo git checkout FETCH_HEAD
99
100 # combine opnfv and upstream scripts/playbooks
101 sudo /bin/cp -rf /opt/releng/prototypes/bifrost/* /opt/bifrost/
102
103 # place bridge creation file on the right path
104 sudo mkdir -p /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt
105 sudo cp /opt/puppet-infracloud/templates/bifrost/create_bridge.py.erb /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt/create_bridge.py
106
107 # replace bridge name
108 sudo sed -i s/"<%= @bridge_name -%>"/br_opnfv/g /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt/create_bridge.py
109
110 # cleanup remnants of previous deployment
111 cd /opt/bifrost
112 sudo -E ./scripts/destroy-env.sh
113
114 # provision 3 VMs; jumphost, controller, and compute
115 cd /opt/bifrost
116 sudo -E ./scripts/test-bifrost-deployment.sh
117
118 # list the provisioned VMs
119 cd /opt/bifrost
120 source env-vars
121 ironic node-list
122 virsh list