X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fscripts%2Fgenerate-change-metadata.sh;h=7517232223f6f36a5f7a0fea44dde353282250c2;hb=3be11a81d8ad9b85caf1094e530ec7f4503e82f4;hp=8b969dc55d662f61020aefa6c9c16d6170e7fff3;hpb=4ed616664ddde713c50c521bbe1e9fa16c2eb975;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/scripts/generate-change-metadata.sh b/jjb/cloud-infra/scripts/generate-change-metadata.sh index 8b969dc5..75172322 100755 --- a/jjb/cloud-infra/scripts/generate-change-metadata.sh +++ b/jjb/cloud-infra/scripts/generate-change-metadata.sh @@ -42,8 +42,15 @@ function determine_dependency() { echo "Info : Processing change $DEPENDENT_CHANGE_ID" declare -a DEPENDENT_CHANGE_METADATA - readarray -t DEPENDENT_CHANGE_METADATA < <(curl -s "https://gerrit.nordix.org/changes/?q=$DEPENDENT_CHANGE_ID&o=CURRENT_REVISION" 2>&1 \ - | grep "project\|status\|current_revision\|ref\".*," | sed -e 's/\s//g' -e 's/,//g' -e 's/"//g'| cut -d: -f2) + # NOTE (cian): upgrades to Gerrit appear to change the output of the previously-used endpoint + # https://gerrit.nordix.org/changes/?q=$DEPENDENT_CHANGE_ID&o=CURRENT_REVISION so moving to + # gerrit SSH-based queries instead + GIT_BASE_SSH_CMD=$(echo "${GIT_BASE_SSH}" | sed -e 's#://# #g' | sed -e 's#:# -p #g') + readarray -t DEPENDENT_CHANGE_METADATA < <( + ${GIT_BASE_SSH_CMD} gerrit query --format=json change:${DEPENDENT_CHANGE_ID} --current-patch-set |\ + head -1 |\ + jq -r '[.project, .status, .currentPatchSet.revision, .currentPatchSet.ref] | join("\n")' + ) # NOTE (fdegir): check if the dependeny change exists # and ignore if it doesn't