X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fdetermine-scenario.sh;h=8207a1eb53b63f9209548421644efb77b33ca8ee;hb=569dfcaaaa0112b0f460689a58c1303936490a55;hp=d3ef11f7850b0f2a881f4f49e9268fef9bd61570;hpb=fcf1625b33c598f764eac0bcd21d98568683abab;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/determine-scenario.sh b/jjb/cloud-infra/determine-scenario.sh index d3ef11f78..8207a1eb5 100644 --- a/jjb/cloud-infra/determine-scenario.sh +++ b/jjb/cloud-infra/determine-scenario.sh @@ -36,7 +36,7 @@ set -o pipefail # 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 installer and the scenario" cd $WORKSPACE COMMIT_MESSAGE=$(git show -s --format=%B) @@ -44,8 +44,8 @@ function override_installer_scenario() { 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') else - echo "Installer type or deploy scenario is not specified." - echo "Falling back to programmatically determining them." + echo "Info: Installer type or deploy scenario is not specified." + echo "Info: Falling back to programmatically determining them." determine_scenario fi } @@ -55,14 +55,14 @@ function override_installer_scenario() { # touched. # TODO: this is not implented yet. function determine_scenario() { - echo "Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC" + echo "Info: Processing $GERRIT_PROJECT patchset $GERRIT_REFSPEC" cd $WORKSPACE COMMIT_MESSAGE=$(git show -s --format=%B) - echo "Not implemented!" + echo "Info: Not implemented!" exit 1 } -echo "Determining the impacted scenario and used installer" +echo "Info: Determining the impacted scenario and used installer" declare -a DEPLOY_SCENARIO declare -a INSTALLER_TYPE @@ -70,16 +70,16 @@ export PROJECT_GIT_URL=$GIT_BASE_HTTPS/$GERRIT_PROJECT override_installer_scenario -echo "Writing change metadata to $WORKSPACE/change.properties" +echo "Info: Writing change metadata to $WORKSPACE/change.properties" cat << EOF > $WORKSPACE/change.properties PROJECT_GIT_URL=$GIT_BASE_HTTPS/$GERRIT_PROJECT DEPLOY_SCENARIO=$DEPLOY_SCENARIO INSTALLER_TYPE=$INSTALLER_TYPE GERRIT_PATCHSET_REVISION=$GERRIT_PATCHSET_REVISION -GERRIT_REFSPEC=$GERRIT_REFSPEC= +GERRIT_REFSPEC=$GERRIT_REFSPEC EOF -echo "Content of change.properties" +echo "Info: Content of change.properties" echo "-------------------------------------------------------------------------" cat $WORKSPACE/change.properties echo "-------------------------------------------------------------------------"