blob: a7122ab8e5bc2d3129d02318660b91b0ddc3581b [file] [log] [blame]
robert.tomczyka9b3ba62019-05-22 18:19:17 +01001#!/bin/bash
2
3# ============LICENSE_START=======================================================
4# Copyright (C) 2019 The Nordix Foundation. All rights reserved.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20
21#
robert.tomczyk4926d1c2019-07-05 09:52:58 +010022# This script will take the single commit form the given Nordix Gerrit review
23# and push it, and all its ancestor commit till $GERRIT_BRANCH, to OpenDaylight
24# Gerrit.
robert.tomczyka9b3ba62019-05-22 18:19:17 +010025# Pre-requisites for script to run successfully:
robert.tomczyk4926d1c2019-07-05 09:52:58 +010026# - The Gerrit username in Nordix needs to match with the Gerrit username in
27# OpenDaylight
28# - infra public key on build server needs to be added to your users SSH
29# Public Keys in OpenDaylight Gerrit
robert.tomczyka9b3ba62019-05-22 18:19:17 +010030#
robert.tomczyk4926d1c2019-07-05 09:52:58 +010031set -euxo pipefail
robert.tomczyka9b3ba62019-05-22 18:19:17 +010032
robert.tomczyk4926d1c2019-07-05 09:52:58 +010033cd "$WORKSPACE"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010034
robert.tomczyk4926d1c2019-07-05 09:52:58 +010035opendaylight_gerrit_base='git.opendaylight.org:29418'
36nordix_gerrit_rest='https://gerrit.nordix.org'
robert.tomczyka9b3ba62019-05-22 18:19:17 +010037
robert.tomczyk4926d1c2019-07-05 09:52:58 +010038echo >&2 "Collecting information about what and how to push towards OpenDaylight"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010039
robert.tomczyk4926d1c2019-07-05 09:52:58 +010040# The git hash of the commit in the review this job runs on
41commit_hash="$GERRIT_PATCHSET_REVISION"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010042
robert.tomczyk4926d1c2019-07-05 09:52:58 +010043# GERRIT_PROJECT is in the form of opendaylight/<opendaylight-project>
44opendaylight_project=$(echo "$GERRIT_PROJECT" | cut -d/ -f2- )
robert.tomczyka9b3ba62019-05-22 18:19:17 +010045
robert.tomczyk4926d1c2019-07-05 09:52:58 +010046# Nordix Gerrit can map the email address of the user pushed the change to
47# the review to the Gerrit username of the account in Nordix Gerrit. This
48# should match with the Gerrit username in the OpenDaylight Gerrit.
49username=$(
50 curl -s -H 'Accept: application/json' \
51 "$nordix_gerrit_rest/accounts/?q=email:$GERRIT_EVENT_ACCOUNT_EMAIL&o=DETAILS" \
52 | tee /dev/stderr | tail -1 | jq -r '.[0].username')
53
54opendaylight_remote_url="ssh://$username@$opendaylight_gerrit_base/$opendaylight_project"
55
56# GERRIT_BRANCH is the _intended_ branch of the commit under review
57# E.g. git push HEAD:refs/for/master => GERRIT_BRANCH='master'
58# GERRIT_TOPIC is the rest of the refspec after GERRIT_BRANCH when the topic
59# is set for the change.
60if [ -z "${GERRIT_TOPIC:-}" ] ; then
61 refspec="$commit_hash:refs/for/$GERRIT_BRANCH"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010062else
robert.tomczyk4926d1c2019-07-05 09:52:58 +010063 refspec="$commit_hash:refs/for/$GERRIT_BRANCH/$GERRIT_TOPIC"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010064fi
65
robert.tomczyk4926d1c2019-07-05 09:52:58 +010066echo >&2 "Pushing to OpenDaylight"
robert.tomczyka9b3ba62019-05-22 18:19:17 +010067
robert.tomczyk4926d1c2019-07-05 09:52:58 +010068# do not fail if git push fails as in case of no new changes we want to succeed. See below.
69set +o pipefail
70
71git push "$opendaylight_remote_url" "$refspec" 2>&1 | tee push_result.txt
72push_result=${PIPESTATUS[0]}
73
74# make the job a success if the above git push fails due to no new changes are needed
75# to be created upstream. This will be useful when we switch to automatic triggering
76# of the push-upstream for each patch set and jobs on different commits in a same chain
77# will race with each other to push parts of the chain
78if [ $push_result -ne 0 ]; then
79 grep '(no new changes)' push_result.txt
robert.tomczyka9b3ba62019-05-22 18:19:17 +010080fi