jjb: xci: xci-start-new-vm: Switch to pre-built bifrost OS images
[releng.git] / jjb / xci / xci-start-new-vm.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2018 SUSE 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
11 #----------------------------------------------------------------------
12 # This script is used by CI and executed by Jenkins jobs.
13 # You are not supposed to use this script manually if you don't know
14 # what you are doing.
15 #----------------------------------------------------------------------
16
17 # skip the deployment if the patch doesn't impact the deployment
18 if [[ "$GERRIT_TOPIC" =~ 'skip-verify' ]]; then
19     echo "Skipping the deployment!"
20     exit 0
21 fi
22
23 # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since
24 # the project where the scenario is coming from is cloned and the patch checked out to the
25 # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM
26 # apart from that, we need releng-xci stuff in WORKSPACE for things to function correctly on Jenkins.
27 # if the change is coming to releng-xci, we don't need to do anything since the patch is checked
28 # out to the WORKSPACE anyways
29 if [[ $GERRIT_PROJECT != "releng-xci" ]]; then
30     cd $HOME && /bin/rm -rf $WORKSPACE
31     git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
32     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
33 fi
34
35 # skip the deployment if the scenario is not supported on this distro
36 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
37 if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
38     echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO"
39     exit 0
40 fi
41
42 cd $WORKSPACE
43
44 # The start-new-vm.sh script will copy the entire releng-xci directory
45 # so lets prepare the test script now so it can be copied by the script.
46 # Please do not move it elsewhere or you would have to move it to the VM
47 # yourself.
48 cat > xci_test.sh<<EOF
49 #!/bin/bash
50 set -o pipefail
51 export DISTRO=$DISTRO
52 export DEPLOY_SCENARIO=$DEPLOY_SCENARIO
53 export FUNCTEST_MODE=$FUNCTEST_MODE
54 export FUNCTEST_SUITE_NAME=$FUNCTEST_SUITE_NAME
55 export XCI_FLAVOR=$XCI_FLAVOR
56 export CORE_OPENSTACK_INSTALL=true
57 export BIFROST_USE_PREBUILT_IMAGES=true
58 export CLEAN_DIB_IMAGES=$CLEAN_DIB_IMAGES
59 export OPNFV_RELENG_DEV_PATH=/home/devuser/releng-xci/
60 export INSTALLER_TYPE=$INSTALLER_TYPE
61 export GIT_BASE=$GIT_BASE
62 export JENKINS_HOME=$JENKINS_HOME
63
64 if [[ ! -z ${WORKSPACE+x} && $GERRIT_PROJECT != "releng-xci" ]]; then
65     git clone https://gerrit.opnfv.org/gerrit/$GERRIT_PROJECT xci/scenarios/$DEPLOY_SCENARIO && cd xci/scenarios/$DEPLOY_SCENARIO
66     git fetch https://gerrit.opnfv.org/gerrit/$GERRIT_PROJECT $GERRIT_REFSPEC && git checkout FETCH_HEAD
67     cd -
68 fi
69
70 cd xci
71 ./xci-deploy.sh | ts
72 EOF
73 chmod a+x xci_test.sh
74
75 export XCI_BUILD_CLEAN_VM_OS=false
76 export XCI_UPDATE_CLEAN_VM_OS=true
77
78 ./xci/scripts/vm/start-new-vm.sh $DISTRO