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"
|
2020-01-21 18:59:33 +01:00
|
|
|
git clone git://github.com/$org/$repo.git $repo --branch "$branch" --depth 1 && 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.
|
2021-06-21 10:47:46 +02:00
|
|
|
# First we check if GITHUB_HEAD_REF is defined,
|
|
|
|
# Then we check if BUILDKITE_BRANCH is defined,
|
2021-06-22 17:14:01 +02:00
|
|
|
# if they aren't we can assume this is a Netlify build
|
2021-06-22 17:09:33 +02:00
|
|
|
if [ -n "$GITHUB_HEAD_REF" ]; then
|
2021-06-22 15:11:41 +02:00
|
|
|
head=$GITHUB_HEAD_REF
|
2021-06-22 17:09:33 +02:00
|
|
|
elif [ -n "$BUILDKITE_BRANCH" ]; then
|
|
|
|
head=$BUILDKITE_BRANCH
|
2021-06-22 15:11:41 +02:00
|
|
|
else
|
|
|
|
# Netlify doesn't give us info about the fork so we have to get it from GitHub API
|
|
|
|
apiEndpoint="https://api.github.com/repos/matrix-org/matrix-react-sdk/pulls/"
|
|
|
|
apiEndpoint+=$REVIEW_ID
|
|
|
|
head=$(curl $apiEndpoint | jq -r '.head.label')
|
2021-04-08 19:05:35 +02:00
|
|
|
fi
|
|
|
|
|
2021-06-22 14:03:55 +02:00
|
|
|
# If head is set, it will contain on Buildkite either:
|
2019-03-19 17:19:56 +01:00
|
|
|
# * "branch" when the author's branch and target branch are in the same repo
|
2021-04-08 19:05:35 +02:00
|
|
|
# * "fork:branch" when the author's branch is in their fork or if this is a Netlify build
|
2019-03-19 17:19:56 +01:00
|
|
|
# We can split on `:` into an array to check.
|
2021-06-21 17:18:13 +02:00
|
|
|
# For GitHub Actions we need to inspect GITHUB_REPOSITORY and GITHUB_ACTOR
|
|
|
|
# to determine whether the branch is from a fork or not
|
2021-04-08 19:05:35 +02:00
|
|
|
BRANCH_ARRAY=(${head//:/ })
|
|
|
|
if [[ "${#BRANCH_ARRAY[@]}" == "1" ]]; then
|
2021-06-22 15:11:41 +02:00
|
|
|
|
|
|
|
if [ -n "$GITHUB_HEAD_REF" ]; then
|
2021-06-22 10:31:15 +02:00
|
|
|
if [[ "$GITHUB_REPOSITORY" == "$deforg"* ]]; then
|
|
|
|
clone $deforg $defrepo $GITHUB_HEAD_REF
|
|
|
|
else
|
2021-06-22 15:17:11 +02:00
|
|
|
REPO_ARRAY=(${GITHUB_REPOSITORY//\// })
|
|
|
|
clone $REPO_ARRAY[0] $defrepo $GITHUB_HEAD_REF
|
2021-06-22 10:31:15 +02:00
|
|
|
fi
|
2021-06-21 17:18:13 +02:00
|
|
|
else
|
2021-06-22 10:31:15 +02:00
|
|
|
clone $deforg $defrepo $BUILDKITE_BRANCH
|
2021-06-21 17:18:13 +02:00
|
|
|
fi
|
2021-06-22 10:31:15 +02:00
|
|
|
|
2021-04-08 19:05:35 +02:00
|
|
|
elif [[ "${#BRANCH_ARRAY[@]}" == "2" ]]; then
|
|
|
|
clone ${BRANCH_ARRAY[0]} $defrepo ${BRANCH_ARRAY[1]}
|
2019-03-19 17:19:56 +01:00
|
|
|
fi
|
2021-06-21 10:47:46 +02:00
|
|
|
|
2019-03-15 18:19:05 +01:00
|
|
|
# Try the target branch of the push or PR.
|
2021-06-22 15:11:41 +02:00
|
|
|
if [ -n $GITHUB_BASE_REF ]; then
|
2021-06-21 10:47:46 +02:00
|
|
|
clone $deforg $defrepo $GITHUB_BASE_REF
|
2021-06-22 15:11:41 +02:00
|
|
|
elif [ -n $BUILDKITE_PULL_REQUEST_BASE_BRANCH ]; then
|
2021-06-21 10:47:46 +02:00
|
|
|
clone $deforg $defrepo $BUILDKITE_PULL_REQUEST_BASE_BRANCH
|
|
|
|
fi
|
|
|
|
|
2020-12-03 19:40:33 +01:00
|
|
|
# Try HEAD which is the branch name in Netlify (not BRANCH which is pull/xxxx/head for PR builds)
|
|
|
|
clone $deforg $defrepo $HEAD
|
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
|