174932813bf190669c0d9b3f379e4d5e94d01e60
[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 # ensure GERRIT_TOPIC is set
18 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
19
20 # skip the deployment if the patch doesn't impact the deployment
21 if [[ "$GERRIT_TOPIC" =~ 'skip-verify' ]]; then
22     echo "Skipping the deployment!"
23     exit 0
24 fi
25
26 # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since
27 # the project where the scenario is coming from is cloned and the patch checked out to the
28 # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM
29 # apart from that, we need releng-xci stuff in WORKSPACE for things to function correctly on Jenkins.
30 # if the change is coming to releng-xci, we don't need to do anything since the patch is checked
31 # out to the WORKSPACE anyways
32 if [[ $GERRIT_PROJECT != "releng-xci" ]]; then
33     cd $HOME && /bin/rm -rf $WORKSPACE
34     git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
35     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
36 fi
37
38 # skip the deployment if the scenario is not supported on this distro
39 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
40 if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
41     echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO"
42     exit 0
43 fi
44
45 cd $WORKSPACE
46
47 # The start-new-vm.sh script will copy the entire releng-xci directory
48 # so lets prepare the test script now so it can be copied by the script.
49 # Please do not move it elsewhere or you would have to move it to the VM
50 # yourself.
51 cat > xci_test.sh<<EOF
52 #!/bin/bash
53 set -o pipefail
54 export DISTRO=$DISTRO
55 export DEPLOY_SCENARIO=$DEPLOY_SCENARIO
56 export FUNCTEST_MODE=$FUNCTEST_MODE
57 export FUNCTEST_SUITE_NAME=$FUNCTEST_SUITE_NAME
58 export XCI_FLAVOR=$XCI_FLAVOR
59 export CORE_OPENSTACK_INSTALL=true
60 export BIFROST_USE_PREBUILT_IMAGES=true
61 export CLEAN_DIB_IMAGES=$CLEAN_DIB_IMAGES
62 export OPNFV_RELENG_DEV_PATH=/home/devuser/releng-xci/
63 export INSTALLER_TYPE=$INSTALLER_TYPE
64 export GIT_BASE=$GIT_BASE
65 export JENKINS_HOME=$JENKINS_HOME
66 export CI_LOOP=$CI_LOOP
67 export BUILD_TAG=$BUILD_TAG
68 export NODE_NAME=$NODE_NAME
69
70 if [[ ! -z ${WORKSPACE+x} && $GERRIT_PROJECT != "releng-xci" ]]; then
71     export XCI_ANSIBLE_PARAMS="-e @/home/devuser/releng-xci/scenario_overrides.yml"
72 fi
73
74 cd xci
75 ./xci-deploy.sh | ts
76 EOF
77
78 if [[ ! -z ${WORKSPACE+x} && $GERRIT_PROJECT != "releng-xci" ]]; then
79     cat > scenario_overrides.yml <<-EOF
80 ---
81 xci_scenarios_overrides:
82   - scenario: $DEPLOY_SCENARIO
83     version: $GERRIT_PATCHSET_REVISION
84     refspec: $GERRIT_REFSPEC
85 EOF
86 fi
87
88 chmod a+x xci_test.sh
89
90 export XCI_BUILD_CLEAN_VM_OS=false
91 export XCI_UPDATE_CLEAN_VM_OS=true
92
93 ./xci/scripts/vm/start-new-vm.sh $DISTRO