Pass multiple pattern args in logs-deploy.sh
[releng/global-jjb.git] / shell / gerrit-push-patch.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2018 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> gerrit-push-patch.sh"
12 # Push a change to Gerrit if files modified in repository.
13 #
14 # The script requires to install the minimum version 1.25 of git-review using
15 # virtualenv and pip install which supports `--reviewers` option.
16 #
17 # The script allows a job to push a patch to Gerrit in an automated fashion.
18 # This is meant for tasks that creates the same patch regularly and needs the
19 # ability to detect if an unreviewed patch already exists. In which case it
20 # will update the existing patch.
21 #
22 # Note: This patch assumes the $WORKSPACE contains the project repo with
23 #       the files changed already "git add" and waiting for a "git commit" call.
24 #
25 # This script requires the following JJB variables to be passed in:
26 #
27 #   $PROJECT              : Gerrit project-name
28 #   $GERRIT_COMMIT_MESSAGE: Commit message to assign to commit
29 #   $GERRIT_HOST          : Gerrit hostname
30 #   $GERRIT_TOPIC         : Gerrit topic, please make a unique topic
31 #   $GERRIT_USER          : Gerrit user
32 #   $REVIEWERS_EMAIL      : Reviewers email
33
34 # TODO: remove the workaround when v1.26 is available on all images
35 # Workaround for git-review bug in v1.24
36 # https://storyboard.openstack.org/#!/story/2001081
37 set +u  # Allow unbound variables for virtualenv
38 virtualenv --quiet "/tmp/v/git-review"
39 # shellcheck source=/tmp/v/git-review/bin/activate disable=SC1091
40 source "/tmp/v/git-review/bin/activate"
41 pip install --quiet --upgrade "pip==9.0.3" setuptools
42 pip install --quiet --upgrade git-review
43 set -u
44 # End git-review workaround
45
46 # Remove any leading or trailing quotes surrounding the strings
47 # which can cause parse errors when passed as CLI options to commands
48 PROJECT="$(echo $PROJECT | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
49 GERRIT_COMMIT_MESSAGE="$(echo $GERRIT_COMMIT_MESSAGE | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
50 GERRIT_HOST="$(echo $GERRIT_HOST | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
51 GERRIT_TOPIC="$(echo $GERRIT_TOPIC | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
52 GERRIT_USER="$(echo $GERRIT_USER | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
53 REVIEWERS_EMAIL="$(echo $REVIEWERS_EMAIL | sed "s/^\([\"']\)\(.*\)\1\$/\2/g")"
54
55 CHANGE_ID=$(ssh -p 29418 "$GERRIT_USER@$GERRIT_HOST" gerrit query \
56                limit:1 owner:self is:open project:"$PROJECT" \
57                message: "$GERRIT_COMMIT_MESSAGE" \
58                topic: "$GERRIT_TOPIC" | \
59                grep 'Change-Id:' | \
60                awk '{ print $2 }')
61
62 if [ -z "$CHANGE_ID" ]; then
63    git commit -sm "$GERRIT_COMMIT_MESSAGE"
64 else
65    git commit -sm "$GERRIT_COMMIT_MESSAGE" -m "Change-Id: $CHANGE_ID"
66 fi
67
68 git status
69 git remote add gerrit "ssh://$GERRIT_USER@$GERRIT_HOST:29418/$PROJECT.git"
70
71 # if the reviewers email is empty then use a default
72 REVIEWERS_EMAIL=${REVIEWERS_EMAIL:-"$GERRIT_USER@$GERRIT_HOST"}
73
74 # Don't fail the build if this command fails because it's possible that there
75 # is no changes since last update.
76 git review --yes -t "$GERRIT_TOPIC" --reviewers "$REVIEWERS_EMAIL" || true