Pass multiple pattern args in logs-deploy.sh
[releng/global-jjb.git] / shell / gerrit-fetch-dependencies.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 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-fetch-dependencies.sh"
12 # Fetches patches all projects provided by comment trigger
13 #
14 # Takes a list of Gerrit patches and fetches all projects and cherry-pick
15 # patches for projects. The trigger is
16 #     'recheck: SPACE_SEPERATED_LIST_OF_PATCHES'
17 #     or
18 #     'reverify: SPACE_SEPERATED_LIST_OF_PATCHES'
19 #
20 # NOTE: This script assumes the user will provide the correct dependency order
21 #       via the PATCHES list.
22
23 # Ensure we fail the job if any steps fail.
24 set -eu -o pipefail
25
26 REPOS_DIR="$WORKSPACE/.repos"
27
28 IFS=" " read -r -a PATCHES <<< "$(echo "$GERRIT_EVENT_COMMENT_TEXT" | grep -E '(recheck:|reverify:)' | awk -F: '{print $2}')"
29
30 # Workaround for git-review bug in v1.24
31 # https://storyboard.openstack.org/#!/story/2001081
32 set +u  # Allow unbound variables for virtualenv
33 virtualenv --quiet "/tmp/v/git-review"
34 # shellcheck source=/tmp/v/git-review/bin/activate disable=SC1091
35 source "/tmp/v/git-review/bin/activate"
36 pip install --quiet --upgrade "pip==9.0.3" setuptools
37 pip install --quiet --upgrade git-review
38 set -u
39 # End git-review workaround
40
41 projects=()
42 for patch in $(echo "${PATCHES[@]}"); do
43     json=$(curl -s "$GERRIT_URL/changes/$patch" | sed -e "s/)]}'//")
44     project=$(echo "$json" | jq -r '.project')
45     branch=$(echo "$json" | jq -r '.branch')
46
47     if [ "$GERRIT_CHANGE_NUMBER" == "$patch" ]; then
48         echo "WARN: GERRIT_CHANGE and $patch are one and the same. Ignoring patch..."
49         continue
50     fi
51
52     if [ ! -d "$REPOS_DIR/$project" ]; then
53         git clone -q --depth 1 -b "$branch" "$GIT_URL/$project" "$REPOS_DIR/$project"
54
55         # This array will be used later to determine project build order.
56         projects+=("$project")
57     fi
58
59     pushd "$REPOS_DIR/$project"
60     # If remote gerrit already exists just make sure path is expected
61     if ! git remote add gerrit "$GERRIT_URL/$project" > /dev/null 2>&1; then
62         git remote set-url gerrit "$GERRIT_URL/$project"
63     fi
64     git review --cherrypick="$patch"
65     popd
66 done
67
68 # This script should be a macro which re-inject's the projects variable back
69 # into the build so a script later on can use it.
70 echo "DEPENDENCY_BUILD_ORDER=${projects[*]}" > "$WORKSPACE/.dependency.properties"