bifrost: Refactor bifrost jobs
[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 fix_ownership EXIT
15
16 function fix_ownership() {
17     if [ -z "${JOB_URL+x}" ]; then
18         echo "Not running as part of Jenkins. Handle the logs manually."
19     else
20         sudo chown -R jenkins:jenkins $WORKSPACE
21     fi
22 }
23
24 # check distro to see if we support it
25 if [[ ! "$DISTRO" =~ (trusty|centos7|suse) ]]; then
26     echo "Distro $DISTRO is not supported!"
27     exit 1
28 fi
29
30 # remove previously cloned repos
31 sudo /bin/rm -rf /opt/bifrost /opt/puppet-infracloud /opt/stack /opt/releng
32
33 # clone all the repos first and checkout the patch afterwards
34 sudo git clone https://git.openstack.org/openstack/bifrost /opt/bifrost
35 sudo git clone https://git.openstack.org/openstack-infra/puppet-infracloud /opt/puppet-infracloud
36 sudo git clone https://gerrit.opnfv.org/gerrit/releng /opt/releng
37
38 # checkout the patch
39 cd $CLONE_LOCATION
40 sudo git fetch $PROJECT_REPO $GERRIT_REFSPEC && sudo git checkout FETCH_HEAD
41
42 # combine opnfv and upstream scripts/playbooks
43 sudo /bin/cp -rf /opt/releng/prototypes/bifrost/* /opt/bifrost/
44
45 # cleanup remnants of previous deployment
46 cd /opt/bifrost
47 sudo -E ./scripts/destroy-env.sh
48
49 # provision 3 VMs; jumphost, controller, and compute
50 cd /opt/bifrost
51 sudo -E ./scripts/test-bifrost-deployment.sh
52
53 # list the provisioned VMs
54 cd /opt/bifrost
55 source env-vars
56 ironic node-list
57 virsh list