Attempt to move build to a different node part 2
[infra/cicd.git] / jjb / cloud-infra / determine-scenario.sh
index e9d7649913902f48edd0db2a01593168b676d4c7..77d6c9bcb50810d4644b2fe6e74b4ac93b7f4b4e 100644 (file)
@@ -25,28 +25,38 @@ set -o pipefail
 # this function processes commit message to determine the impacted scenario
 # using the input provided by the committer.
 #
-# installer type and scenario should be placed at the beginning of lines
-# separately and the format of the entry in commit message is as below
+# provisioner type, installer type and scenario should be placed at the beginning of
+# lines separately and the format of the entry in commit message is as below
 #
+# provisioner-type: <provisioner type>
 # installer-type: <installer type>
 # deploy-scenario: <scenario name>
 #
 # example is
 #
+# provisioner-type: bifrost
 # installer-type: kubespray
 # deploy-scenario: k8-calico-nofeature
 function override_installer_scenario() {
-  echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC to determine the installer and the scenario"
+  echo "Info: Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC to determine the provisioner, installer and, scenario"
   cd $WORKSPACE
   COMMIT_MESSAGE=$(git show -s --format=%B)
 
+  if [[ "$COMMIT_MESSAGE" =~ "provisioner-type:" ]]; then
+    # we support heat as well so ensure we capture it
+    export PROVISIONER_TYPE=$(echo "$COMMIT_MESSAGE" | grep '^provisioner-type:' | cut -d":" -f2 | sed 's/\s*//g')
+  else
+    # default is almost always bifrost
+    export PROVISIONER_TYPE=bifrost
+  fi
+
   if [[ "$COMMIT_MESSAGE" =~ "deploy-scenario:" && "$COMMIT_MESSAGE" =~ "installer-type:" ]]; then
     export INSTALLER_TYPE=$(echo "$COMMIT_MESSAGE" | grep '^installer-type:' | cut -d":" -f2 | sed 's/\s*//g')
     export DEPLOY_SCENARIO=$(echo "$COMMIT_MESSAGE" | grep '^deploy-scenario:' | cut -d":" -f2 | sed 's/\s*//g')
+    write_change_metadata
   else
-    echo "Installer type or deploy scenario is not specified."
-    echo "Falling back to programmatically determining them."
-    determine_scenario
+    echo "Info: Installer type or deploy scenario is not specified."
+    echo "Info: Falling back to programmatically determining them."
   fi
 }
 
@@ -55,21 +65,49 @@ function override_installer_scenario() {
 # touched.
 # TODO: this is not implented yet.
 function determine_scenario() {
-  echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
-  cd $WORKSPACE
-  COMMIT_MESSAGE=$(git show -s --format=%B)
-  echo "Not implemented!"
-  exit 1
+  # for infra/engine repo, we set INSTALLER_TYPE and DEPLOY_SCENARIO to their defaults
+  echo "Info: Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
+  if [[ "$GERRIT_PROJECT" == "infra/engine" ]]; then
+    echo "Info: Setting INSTALLER_TYPE and DEPLOY_SCENARIO to defaults for project $GERRIT_PROJECT patchset $GERRIT_REFSPEC"
+    export PROVISIONER_TYPE=bifrost
+    export INSTALLER_TYPE=kubespray
+    export DEPLOY_SCENARIO=k8-calico-nofeature
+    write_change_metadata
+  else
+    cd $WORKSPACE
+    COMMIT_MESSAGE=$(git show -s --format=%B)
+    echo "Info: Not implemented!"
+    exit 1
+  fi
 }
 
-echo "Determining the impacted scenario and used installer"
+function write_change_metadata() {
+  echo "Info: Writing change metadata to $WORKSPACE/change.properties"
+  cat << EOF > $WORKSPACE/change.properties
+PROJECT_GIT_URL=$GIT_BASE_HTTPS/$GERRIT_PROJECT
+PROVISIONER_TYPE=$PROVISIONER_TYPE
+INSTALLER_TYPE=$INSTALLER_TYPE
+DEPLOY_SCENARIO=$DEPLOY_SCENARIO
+GERRIT_PATCHSET_REVISION=$GERRIT_PATCHSET_REVISION
+GERRIT_REFSPEC=$GERRIT_REFSPEC
+EOF
 
-declare -a DEPLOY_SCENARIO
+  echo "Info: Content of change.properties"
+  echo "-------------------------------------------------------------------------"
+  cat $WORKSPACE/change.properties
+  echo "-------------------------------------------------------------------------"
+
+  # need to exit here to ensure we don't go further while determining scenario
+  exit 0
+}
+
+echo "Info: Determining the provisioner, installer, and scenario"
+
+declare -a PROVISIONER_TYPE
 declare -a INSTALLER_TYPE
-export PROJECT_GIT_URL=$GIT_BASE_HTTPS/$GERRIT_PROJECT
+declare -a DEPLOY_SCENARIO
 
 override_installer_scenario
-
-echo "Writing change metadata to $WORKSPACE/change.properties"
+determine_scenario
 
 # vim: set ts=2 sw=2 expandtab: