xci: Convert execute shell scripts to external scripts
[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 cd $WORKSPACE
24
25 # The start-new-vm.sh script will copy the entire releng-xci directory
26 # so lets prepare the test script now so it can be copied by the script.
27 # Please do not move it elsewhere or you would have to move it to the VM
28 # yourself.
29 cat > xci_test.sh<<EOF
30 #!/bin/bash
31 export DISTRO=$DISTRO
32 export DEPLOY_SCENARIO=$DEPLOY_SCENARIO
33 export FUNCTEST_MODE=$FUNCTEST_MODE
34 export FUNCTEST_SUITE_NAME=$FUNCTEST_SUITE_NAME
35 export XCI_FLAVOR=$XCI_FLAVOR
36 export CLEAN_DIB_IMAGES=$CLEAN_DIB_IMAGES
37 export OPNFV_RELENG_DEV_PATH=/home/devuser/releng-xci/
38 export INSTALLER_TYPE=$INSTALLER_TYPE
39 export GIT_BASE=$GIT_BASE
40 export JENKINS_HOME=$JENKINS_HOME
41
42 cd xci
43 ./xci-deploy.sh
44 EOF
45 chmod a+x xci_test.sh
46
47 export XCI_BUILD_CLEAN_VM_OS=false
48 export XCI_UPDATE_CLEAN_VM_OS=true
49
50 ./xci/scripts/vm/start-new-vm.sh $DISTRO