summaryrefslogtreecommitdiffstats
path: root/jjb/xci/bifrost-verify.sh
blob: c810212e3e65c251a9ab356cd333bcbfb0a3f6b6 (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
#!/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

git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE/releng-xci

cd $WORKSPACE
git fetch $PROJECT_REPO $GERRIT_REFSPEC && sudo git checkout FETCH_HEAD

# combine opnfv and upstream scripts/playbooks
/bin/cp -rf $WORKSPACE/releng-xci/xci/infra/bifrost/* $WORKSPACE/

cd $WORKSPACE/releng-xci
cat > bifrost_test.sh<<EOF
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail

cd ~/bifrost
# set path for XCI repository
export XCI_PATH=~/bifrost/releng-xci

# provision 3 VMs; xcimaster, controller, and compute
./scripts/bifrost-provision.sh | ts

sudo -H -E virsh list
EOF
chmod a+x bifrost_test.sh

# Fix up distros
case ${DISTRO} in
	xenial) VM_DISTRO=ubuntu ;;
	centos7) VM_DISTRO=centos ;;
	*suse*) VM_DISTRO=opensuse ;;
esac

export XCI_BUILD_CLEAN_VM_OS=false
export XCI_UPDATE_CLEAN_VM_OS=true

./xci/scripts/vm/start-new-vm.sh $VM_DISTRO

rsync -a -e "ssh -F $HOME/.ssh/${VM_DISTRO}-xci-vm-config" $WORKSPACE/ ${VM_DISTRO}_xci_vm:~/bifrost

ssh -F $HOME/.ssh/${VM_DISTRO}-xci-vm-config ${VM_DISTRO}_xci_vm "cd ~/bifrost/releng-xci && ./bifrost_test.sh"