potential fix for running prepare-functest playbook
[releng.git] / jjb / xci / xci-run-functest.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 set -o errexit
11 set -o nounset
12 set -o pipefail
13
14 #----------------------------------------------------------------------
15 # This script is used by CI and executed by Jenkins jobs.
16 # You are not supposed to use this script manually if you don't know
17 # what you are doing.
18 #----------------------------------------------------------------------
19
20 # ensure GERRIT_TOPIC is set
21 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
22
23 # skip the healthcheck if the patch doesn't impact the deployment
24 if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then
25     echo "Skipping the healthcheck!"
26     exit 0
27 fi
28
29 # skip the healthcheck if the scenario is Kubernetes scenario
30 if [[ "$DEPLOY_SCENARIO" =~ k8 ]]; then
31     echo "Skipping the healthcheck!"
32     exit 0
33 fi
34
35 # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since
36 # the project where the scenario is coming from is cloned and the patch checked out to the
37 # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM
38 # apart from that, we need releng-xci stuff in WORKSPACE for things to function correctly on Jenkins.
39 # if the change is coming to releng-xci, we don't need to do anything since the patch is checked
40 # out to the WORKSPACE anyways
41 if [[ $GERRIT_PROJECT != "releng-xci" ]]; then
42     cd $HOME && /bin/rm -rf $WORKSPACE
43     git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
44     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
45 fi
46
47 # skip the deployment if the scenario is not supported on this distro
48 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
49 if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
50     echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO"
51     exit 0
52 fi
53
54 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cd /root/releng-xci/xci/playbooks && ansible-playbook -i inventory -e ansible_python_interpreter=/usr/bin/python prepare-functest.yml"
55 echo "Running functest"
56 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh"
57 echo "Functest log"
58 echo "---------------------------------------------------------------------------------"
59 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cat /root/results/functest.log"
60 echo "---------------------------------------------------------------------------------"