X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Frtd-trigger-build.sh;h=e0a6f002ac4c09b4e48cee1d400c7f6dcaed005a;hb=refs%2Fchanges%2F50%2F72650%2F2;hp=673d0f9af13c4bb9867d873584aeec837b2a1937;hpb=42bccf5db0da3fd0b900a3c508988d992b1fecc2;p=releng%2Fglobal-jjb.git diff --git a/shell/rtd-trigger-build.sh b/shell/rtd-trigger-build.sh index 673d0f9a..e0a6f002 100644 --- a/shell/rtd-trigger-build.sh +++ b/shell/rtd-trigger-build.sh @@ -8,9 +8,9 @@ # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html ############################################################################## -# Call cURL to trigger a build in RTD via the Generic API +# Calls cURL to trigger a build in RTD via the Generic API # -# Paramters: +# Parameters: # RTD_BUILD_URL: The unique build URL for the project. # Check Admin > Integrations > Generic API incoming webhook. # @@ -27,13 +27,18 @@ set -e -o pipefail last_char=${RTD_BUILD_URL:length-1:1} [[ $last_char != "/" ]] && RTD_BUILD_URL="$RTD_BUILD_URL/"; : +# Handle case for gerrit event type is ref-updated when new tag are pushed +[[ $GERRIT_EVENT_TYPE =~ "ref-updated" ]] && GERRIT_BRANCH=${GERRIT_REFNAME##*/} + +echo "INFO: Posting request for branch $GERRIT_BRANCH to URL $RTD_BUILD_URL" json=$(curl -X POST -d "branches=${GERRIT_BRANCH}" -d "token=$RTD_TOKEN" "$RTD_BUILD_URL") -build_triggered=$(echo $json | jq -r .build_triggered) +build_triggered=$(echo "$json" | jq -r .build_triggered) if [ "$build_triggered" != "true" ]; then - echo "ERROR: Build was not triggered." - echo "$json" | jq -r + echo "ERROR: Build was not triggered, ReadTheDocs response follows:" + echo "$json" exit 1 fi echo "Build triggered for $GERRIT_PROJECT in ReadTheDocs." +echo "---> rtd-trigger-build.sh ends"