Disable blocking on buildable queue (Functest)
[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 nounset
11
12 #----------------------------------------------------------------------
13 # This script is used by CI and executed by Jenkins jobs.
14 # You are not supposed to use this script manually if you don't know
15 # what you are doing.
16 #----------------------------------------------------------------------
17
18 # ensure GERRIT_TOPIC is set
19 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
20
21 # skip the healthcheck if the patch doesn't impact the deployment
22 if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then
23     echo "Skipping the healthcheck!"
24     exit 0
25 fi
26
27 # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since
28 # the project where the scenario is coming from is cloned and the patch checked out to the
29 # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM
30 # apart from that, we need releng-xci stuff in WORKSPACE for things to function correctly on Jenkins.
31 # if the change is coming to releng-xci, we don't need to do anything since the patch is checked
32 # out to the WORKSPACE anyways
33 if [[ $GERRIT_PROJECT != "releng-xci" ]]; then
34     cd $HOME && /bin/rm -rf $WORKSPACE
35     git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
36     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
37 fi
38
39 # skip the deployment if the scenario is not supported on this distro
40 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
41 if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
42     echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO"
43     exit 0
44 fi
45
46 # set XCI_VENV for ansible
47 export XCI_PATH=/home/devuser/releng-xci
48 export XCI_VENV=${XCI_PATH}/venv
49
50 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm "source $XCI_VENV/bin/activate; \
51     while read var; do declare -x \"\${var}\" 2>/dev/null; done < ${XCI_PATH}/.cache/xci.env && \
52     cd releng-xci/xci && ansible-playbook -i playbooks/dynamic_inventory.py playbooks/prepare-tests.yml"
53 echo "Prepare OPNFV VM for Tests"
54 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/prepare-tests.sh"
55 echo "Running Functest"
56 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh"
57 # Record exit code
58 functest_exit=$?
59
60 case ${DEPLOY_SCENARIO[0]} in
61     os-*)
62         FUNCTEST_LOG=/root/functest-results/functest.log
63         ;;
64     k8-*)
65         FUNCTEST_LOG=/root/functest-results/functest-kubernetes.log
66         ;;
67     *)
68         echo "Unable to determine the installer. Exiting!"
69         exit 1
70         ;;
71 esac
72
73 echo "Functest log"
74 echo "---------------------------------------------------------------------------------"
75 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cat $FUNCTEST_LOG"
76 echo "---------------------------------------------------------------------------------"
77 exit ${functest_exit}