59c1ebf6e09bfc03460818dab667ba852eb0a72f
[releng.git] / jjb / xci / xci-set-scenario.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 pipefail
11 set -x
12
13 #----------------------------------------------------------------------
14 # This script is used by CI and executed by Jenkins jobs.
15 # You are not supposed to use this script manually if you don't know
16 # what you are doing.
17 #----------------------------------------------------------------------
18
19 # This function allows developers to specify the impacted scenario by adding
20 # the info about installer and scenario into the commit message or using
21 # the topic branch names. This results in either skipping the real verification
22 # totally or skipping the determining the installer and scenario programmatically.
23 # It is important to note that this feature is only available to generic scenarios
24 # and only single installer/scenario pair is allowed.
25 # The input in commit message should be placed at the end of the commit message body,
26 # before the signed-off and change-id lines.
27 #
28 # Pattern to be searched in Commit Message
29 #   deploy-scenario:<scenario-name>
30 #   installer-type:<installer-type>
31 # Examples:
32 #   deploy-scenario:os-odl-nofeature
33 #   installer-type:osa
34 #
35 #   deploy-scenario:k8-nosdn-nofeature
36 #   installer-type:kubespray
37 #
38 # Patterns to be searched in topic branch name
39 #   skip-verify
40 #   skip-deployment
41 #   force-verify
42 function override_scenario() {
43     echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
44
45     # ensure the metadata we record is consistent for all types of patches including skipped ones
46     # extract releng-xci sha
47     XCI_SHA=$(cd $WORKSPACE && git rev-parse HEAD)
48
49     # extract scenario sha which is same as releng-xci sha for generic scenarios
50     SCENARIO_SHA=$XCI_SHA
51
52     # process topic branch names
53     if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment|force-verify ]]; then
54         [[ "$GERRIT_TOPIC" =~ force-verify ]] && echo "Forcing CI verification using default scenario and installer!"
55         [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]] && echo "Skipping verification!"
56         echo "INSTALLER_TYPE=osa" > $WORK_DIRECTORY/scenario.properties
57         echo "DEPLOY_SCENARIO=os-nosdn-nofeature" >> $WORK_DIRECTORY/scenario.properties
58         echo "XCI_SHA=$XCI_SHA" >> $WORK_DIRECTORY/scenario.properties
59         echo "SCENARIO_SHA=$SCENARIO_SHA" >> $WORK_DIRECTORY/scenario.properties
60         echo "PROJECT_NAME=$GERRIT_PROJECT" >> $WORK_DIRECTORY/scenario.properties
61         exit 0
62     fi
63
64     # process commit message
65     if [[ "$GERRIT_CHANGE_COMMIT_MESSAGE" =~ "installer-type:" && "$GERRIT_CHANGE_COMMIT_MESSAGE" =~ "deploy-scenario:" ]]; then
66         INSTALLER_TYPE=$(echo $GERRIT_CHANGE_COMMIT_MESSAGE | awk '/installer-type:/' RS=" " | cut -d":" -f2)
67         DEPLOY_SCENARIO=$(echo $GERRIT_CHANGE_COMMIT_MESSAGE | awk '/deploy-scenario:/' RS=" " | cut -d":" -f2)
68
69         if [[ -z "$INSTALLER_TYPE" || -z "$DEPLOY_SCENARIO" ]]; then
70             echo "Installer type or deploy scenario is not specified. Falling back to programmatically determining them."
71         else
72             echo "Recording the installer '$INSTALLER_TYPE' and scenario '$DEPLOY_SCENARIO' for downstream jobs"
73             echo "INSTALLER_TYPE=$INSTALLER_TYPE" > $WORK_DIRECTORY/scenario.properties
74             echo "DEPLOY_SCENARIO=$DEPLOY_SCENARIO" >> $WORK_DIRECTORY/scenario.properties
75             echo "XCI_SHA=$XCI_SHA" >> $WORK_DIRECTORY/scenario.properties
76             echo "SCENARIO_SHA=$SCENARIO_SHA" >> $WORK_DIRECTORY/scenario.properties
77             echo "PROJECT_NAME=$GERRIT_PROJECT" >> $WORK_DIRECTORY/scenario.properties
78             exit 0
79         fi
80     else
81         echo "Installer type or deploy scenario is not specified. Falling back to programmatically determining them."
82     fi
83 }
84
85 # This function determines the default scenario for changes coming to releng-xci
86 # by processing the Gerrit change and using diff to see what changed.
87 #
88 # The stuff in releng-xci is for the installer and other common things so the
89 # determination is based on those.
90 #
91 # Pattern
92 #   releng-xci/installer/<installer_type>/<impacted files>: <scenario>
93 function determine_default_scenario() {
94     echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
95
96     # get the changeset
97     cd $WORKSPACE
98     # We need to set default scenario for changes that mess with installers
99     INSTALLERS=$(git diff HEAD^..HEAD --name-only -- 'xci/installer' | cut -d "/" -f 3 | uniq)
100     for CHANGED_INSTALLER in $INSTALLERS; do
101         case $CHANGED_INSTALLER in
102             kubespray)
103                 DEPLOY_SCENARIO[${#DEPLOY_SCENARIO[@]}]='k8-nosdn-nofeature'
104                 ;;
105             # Default case (including OSA changes)
106             *)
107                 DEPLOY_SCENARIO[${#DEPLOY_SCENARIO[@]}]='os-nosdn-nofeature'
108                 ;;
109         esac
110     done
111     # For all other changes, we only need to set a default scenario if it's not set already
112     if git diff HEAD^..HEAD --name-only | grep -q -v 'xci/installer'; then
113          [[ ${#DEPLOY_SCENARIO[@]} -eq 0 ]] && DEPLOY_SCENARIO[${#DEPLOY_SCENARIO[@]}]='os-nosdn-nofeature'
114     fi
115
116     # extract releng-xci sha
117     XCI_SHA=$(cd $WORKSPACE && git rev-parse HEAD)
118
119     # TODO: we need to fix this so we actually extract the scenario sha by cloning releng-xci-scenarios
120     # for the determined scenario. it is crucial for promotion...
121     SCENARIO_SHA=$XCI_SHA
122 }
123
124 # This function determines the impacted scenario by processing the Gerrit
125 # change and using diff to see what changed. If changed files belong to a scenario
126 # its name gets recorded for deploying and testing the right scenario.
127 #
128 # Pattern
129 #   <project-repo>/scenarios/<scenario>/<impacted files>: <scenario>
130 function determine_scenario() {
131     echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
132
133     # remove the clone that is done via jenkins and place releng-xci there so the
134     # things continue functioning properly
135     cd $HOME && /bin/rm -rf $WORKSPACE
136     git clone -q https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
137
138     # fix the permissions so ssh doesn't complain due to having world-readable keyfiles
139     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
140
141     # clone the project repo and fetch the patchset to process for further processing
142     git clone -q https://gerrit.opnfv.org/gerrit/$GERRIT_PROJECT $WORK_DIRECTORY/$GERRIT_PROJECT
143     cd $WORK_DIRECTORY/$GERRIT_PROJECT
144     git fetch -q https://gerrit.opnfv.org/gerrit/$GERRIT_PROJECT $GERRIT_REFSPEC && git checkout -q FETCH_HEAD
145
146     # process the diff to find out what scenario(s) are impacted - there should only be 1
147     DEPLOY_SCENARIO+=$(git diff HEAD^..HEAD --name-only | grep scenarios | awk -F '[/|/]' '{print $2}' | uniq)
148
149     # extract releng-xci sha
150     XCI_SHA=$(cd $WORKSPACE && git rev-parse HEAD)
151
152     # extract scenario sha
153     SCENARIO_SHA=$(cd $WORK_DIRECTORY/$GERRIT_PROJECT && git rev-parse HEAD)
154 }
155
156 echo "Determining the impacted scenario"
157
158 declare -a DEPLOY_SCENARIO
159
160 # ensure GERRIT_TOPIC is set
161 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
162
163 # this directory is where the temporary clones and files are created
164 # while extracting the impacted scenario
165 WORK_DIRECTORY=/tmp/$GERRIT_CHANGE_NUMBER/$DISTRO
166 /bin/rm -rf $WORK_DIRECTORY && mkdir -p $WORK_DIRECTORY
167
168 if [[ $GERRIT_PROJECT == "releng-xci" ]]; then
169     determine_default_scenario
170 else
171     determine_scenario
172 fi
173 override_scenario
174
175 # ensure single scenario is impacted
176     if [[ $(IFS=$'\n' echo ${DEPLOY_SCENARIO[@]} | wc -w) != 1 ]]; then
177     echo "Change impacts multiple scenarios!"
178     echo "XCI doesn't support testing of changes that impact multiple scenarios currently."
179     echo "Please split your change into multiple different/dependent changes, each modifying single scenario."
180     exit 1
181 fi
182
183 # set the installer
184 case ${DEPLOY_SCENARIO[0]} in
185     os-*)
186         INSTALLER_TYPE=osa
187         ;;
188     k8-*)
189         INSTALLER_TYPE=kubespray
190         ;;
191     *)
192         echo "Unable to determine the installer. Exiting!"
193         exit 1
194         ;;
195 esac
196
197 # save the installer and scenario names into java properties file
198 # so they can be injected to downstream jobs via envInject
199 echo "Recording the installer '$INSTALLER_TYPE' and scenario '${DEPLOY_SCENARIO[0]}' and SHAs for downstream jobs"
200 echo "INSTALLER_TYPE=$INSTALLER_TYPE" > $WORK_DIRECTORY/scenario.properties
201 echo "DEPLOY_SCENARIO=$DEPLOY_SCENARIO" >> $WORK_DIRECTORY/scenario.properties
202 echo "XCI_SHA=$XCI_SHA" >> $WORK_DIRECTORY/scenario.properties
203 echo "SCENARIO_SHA=$SCENARIO_SHA" >> $WORK_DIRECTORY/scenario.properties
204 echo "PROJECT_NAME=$GERRIT_PROJECT" >> $WORK_DIRECTORY/scenario.properties
205
206 # skip scenario support check if the job is promotion job
207 if [[ "$JOB_NAME" =~ (os|k8) ]]; then
208     exit 0
209 fi
210
211 # skip the deployment if the scenario is not supported on this distro
212 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
213 if ! sed -n "/^- scenario: ${DEPLOY_SCENARIO[0]}$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
214     echo "# SKIPPED: Scenario ${DEPLOY_SCENARIO[0]} is NOT supported on $DISTRO"
215     exit 0
216 fi