X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fopendaylight%2Fpush-upstream-jobs.sh;h=19bfc4edaf11f163c1123d797acccff2210b82b2;hb=7b7da37cfe6e637880869a954692774d55145fb3;hp=7b6fbaaaae855bdbd9c7123820ad45ecd13be644;hpb=a9b3ba6f2745e10b8e91ef61dc7181eddf74c830;p=infra%2Fcicd.git diff --git a/jjb/opendaylight/push-upstream-jobs.sh b/jjb/opendaylight/push-upstream-jobs.sh index 7b6fbaaa..19bfc4ed 100755 --- a/jjb/opendaylight/push-upstream-jobs.sh +++ b/jjb/opendaylight/push-upstream-jobs.sh @@ -19,58 +19,73 @@ # ============LICENSE_END========================================================= # -# This script will take the changes that are pushed to Nordix Gerrit and push upstream to Opendaylight +# This script will take the single commit form the given Nordix Gerrit review +# and push it, and all its ancestor commit till $GERRIT_BRANCH, to OpenDaylight +# Gerrit. # Pre-requisites for script to run successfully: # - Author name in Nordix Gerrit equals LFID i.e. need to run "git config --global user.name " -# - infra public key on build server needs to be added to your users SSH Public Keys in Opendaylight Gerrit +# - infra public key on build server needs to be added to your users SSH +# Public Keys in OpenDaylight Gerrit # -set -o nounset -set -o pipefail +set -euxo pipefail -cd $WORKSPACE -echo "Retrieving information from commit to push towards Opendaylight" -project=$(git config --local remote.origin.url | awk -F "29418/opendaylight/" '{print $2}') -message=$(git show -s --pretty=%B | grep -vi 'Signed-off-by') +cd "$WORKSPACE" + +opendaylight_gerrit_base='git.opendaylight.org:29418' +nordix_gerrit_rest='https://gerrit.nordix.org' + +echo >&2 "Collecting information about what and how to push towards OpenDaylight" + +# The git hash of the commit in the review this job runs on +commit_hash="$GERRIT_PATCHSET_REVISION" + +# GERRIT_PROJECT is in the form of opendaylight/ +opendaylight_project=$(echo "$GERRIT_PROJECT" | cut -d/ -f2- ) + +# original way to get user name based on nordix id replaced by method below +# Nordix Gerrit can map the email address of the user pushed the change to +# the review to the Gerrit username of the account in Nordix Gerrit. This +# should match with the Gerrit username in the OpenDaylight Gerrit. +#username=$( +# curl -s -H 'Accept: application/json' \ +# "$nordix_gerrit_rest/accounts/?q=email:$GERRIT_EVENT_ACCOUNT_EMAIL&o=DETAILS" \ +# | tee /dev/stderr | tail -1 | jq -r '.[0].username') + +# read user name from the commit details which allows nordix user name to be different to lfid username=$(git show -s --pretty=%an) pattern=" " if [[ "$username" =~ $pattern ]] then echo "Incorrect username, use Linux Foundation ID as git user.name when pushing to Nordix" + echo "Use command git config --global user.name " exit 1 fi -echo "Setting user name and email" -git config user.email $(git show -s --pretty=%ae) -git config user.name $username - -echo "Checking out branch on master with new changes" -git reset HEAD~1 --soft -git checkout -b delivery_branch origin/$BRANCH +opendaylight_remote_url="ssh://$username@$opendaylight_gerrit_base/$opendaylight_project" -git config --get remote.upstream.url -retVal=$? - -if [[ $retVal -eq 0 ]] -then - git remote rm upstream - git remote add upstream "ssh://$username@git.opendaylight.org:29418/$project.git" +# GERRIT_BRANCH is the _intended_ branch of the commit under review +# E.g. git push HEAD:refs/for/master => GERRIT_BRANCH='master' +# GERRIT_TOPIC is the rest of the refspec after GERRIT_BRANCH when the topic +# is set for the change. +if [ -z "${GERRIT_TOPIC:-}" ] ; then + refspec="$commit_hash:refs/for/$GERRIT_BRANCH" else - git remote add upstream "ssh://$username@git.opendaylight.org:29418/$project.git" + refspec="$commit_hash:refs/for/$GERRIT_BRANCH/$GERRIT_TOPIC" fi -echo "Committing changes and pushing upstream" -git commit -as -m "$message" -git push upstream HEAD:refs/for/$BRANCH +echo >&2 "Pushing to OpenDaylight" -retVal1=$? -if [[ $retVal1 -eq 0 ]] -then - echo "Push upstream to Opendaylight succeeded" -else - echo "Push upstream to Opendaylight failed" - exit 2 -fi +# do not fail if git push fails as in case of no new changes we want to succeed. See below. +set +o pipefail + +git push "$opendaylight_remote_url" "$refspec" 2>&1 | tee push_result.txt +push_result=${PIPESTATUS[0]} -git checkout $BRANCH -git branch -D delivery_branch +# make the job a success if the above git push fails due to no new changes are needed +# to be created upstream. This will be useful when we switch to automatic triggering +# of the push-upstream for each patch set and jobs on different commits in a same chain +# will race with each other to push parts of the chain +if [ $push_result -ne 0 ]; then + grep '(no new changes)' push_result.txt +fi