2019-03-19 17:19:56 +01:00
|
|
|
#!/bin/bash
|
2018-05-02 12:03:40 +02:00
|
|
|
|
2019-03-19 17:19:56 +01:00
|
|
|
set -x
|
|
|
|
|
|
|
|
deforg="$1"
|
|
|
|
defrepo="$2"
|
2018-12-22 03:16:37 +01:00
|
|
|
defbranch="$3"
|
|
|
|
|
|
|
|
[ -z "$defbranch" ] && defbranch="develop"
|
2018-05-02 12:03:40 +02:00
|
|
|
|
2019-03-19 17:19:56 +01:00
|
|
|
rm -r "$defrepo" || true
|
2018-05-02 17:49:08 +02:00
|
|
|
|
2018-12-20 23:13:40 +01:00
|
|
|
clone() {
|
2019-03-19 17:19:56 +01:00
|
|
|
org=$1
|
|
|
|
repo=$2
|
|
|
|
branch=$3
|
2018-12-20 23:13:40 +01:00
|
|
|
if [ -n "$branch" ]
|
|
|
|
then
|
2019-03-19 17:19:56 +01:00
|
|
|
echo "Trying to use $org/$repo#$branch"
|
2019-03-20 18:57:51 +01:00
|
|
|
git clone git://github.com/$org/$repo.git $repo --branch "$branch" && exit 0
|
2018-12-20 23:13:40 +01:00
|
|
|
fi
|
|
|
|
}
|
2018-05-02 16:53:38 +02:00
|
|
|
|
2019-03-15 17:34:30 +01:00
|
|
|
# Try the PR author's branch in case it exists on the deps as well.
|
2019-03-19 17:19:56 +01:00
|
|
|
# If BUILDKITE_BRANCH is set, it will contain either:
|
|
|
|
# * "branch" when the author's branch and target branch are in the same repo
|
|
|
|
# * "author:branch" when the author's branch is in their fork
|
|
|
|
# We can split on `:` into an array to check.
|
|
|
|
BUILDKITE_BRANCH_ARRAY=(${BUILDKITE_BRANCH//:/ })
|
|
|
|
if [[ "${#BUILDKITE_BRANCH_ARRAY[@]}" == "1" ]]; then
|
|
|
|
clone $deforg $defrepo $BUILDKITE_BRANCH
|
|
|
|
elif [[ "${#BUILDKITE_BRANCH_ARRAY[@]}" == "2" ]]; then
|
|
|
|
clone ${BUILDKITE_BRANCH_ARRAY[0]} $defrepo ${BUILDKITE_BRANCH_ARRAY[1]}
|
|
|
|
fi
|
2019-03-15 18:19:05 +01:00
|
|
|
# Try the target branch of the push or PR.
|
2019-03-19 17:19:56 +01:00
|
|
|
clone $deforg $defrepo $BUILDKITE_PULL_REQUEST_BASE_BRANCH
|
2018-12-20 23:13:40 +01:00
|
|
|
# Try the current branch from Jenkins.
|
2019-03-19 17:19:56 +01:00
|
|
|
clone $deforg $defrepo `"echo $GIT_BRANCH" | sed -e 's/^origin\///'`
|
2019-01-04 00:00:23 +01:00
|
|
|
# Use the default branch as the last resort.
|
2019-03-19 17:19:56 +01:00
|
|
|
clone $deforg $defrepo $defbranch
|