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
|
|
|
|
2022-05-04 21:29:34 +02:00
|
|
|
PR_ORG=${PR_ORG:-"matrix-org"}
|
|
|
|
PR_REPO=${PR_REPO:-"matrix-react-sdk"}
|
|
|
|
|
2021-09-01 22:43:37 +02:00
|
|
|
# A function that clones a branch of a repo based on the org, repo and branch
|
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"
|
2021-11-02 21:22:24 +01:00
|
|
|
# Disable auth prompts: https://serverfault.com/a/665959
|
|
|
|
GIT_TERMINAL_PROMPT=0 git clone https://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
|
|
|
|
2021-08-29 13:42:12 +02:00
|
|
|
# A function that gets info about a PR from the GitHub API based on its number
|
|
|
|
getPRInfo() {
|
|
|
|
number=$1
|
|
|
|
if [ -n "$number" ]; then
|
|
|
|
echo "Getting info about a PR with number $number"
|
2021-04-08 19:05:35 +02:00
|
|
|
|
2022-05-04 21:29:34 +02:00
|
|
|
apiEndpoint="https://api.github.com/repos/$PR_ORG/$PR_REPO/pulls/$number"
|
2021-06-22 15:11:41 +02:00
|
|
|
|
2021-08-29 13:42:12 +02:00
|
|
|
head=$(curl $apiEndpoint | jq -r '.head.label')
|
2021-06-21 17:18:13 +02:00
|
|
|
fi
|
2021-08-29 13:42:12 +02:00
|
|
|
}
|
2021-06-22 10:31:15 +02:00
|
|
|
|
2021-08-29 13:42:12 +02:00
|
|
|
# Some CIs don't give us enough info, so we just get the PR number and ask the
|
|
|
|
# GH API for more info - "fork:branch". Some give us this directly.
|
|
|
|
if [ -n "$BUILDKITE_BRANCH" ]; then
|
|
|
|
# BuildKite
|
|
|
|
head=$BUILDKITE_BRANCH
|
|
|
|
elif [ -n "$PR_NUMBER" ]; then
|
|
|
|
# GitHub
|
|
|
|
getPRInfo $PR_NUMBER
|
|
|
|
elif [ -n "$REVIEW_ID" ]; then
|
|
|
|
# Netlify
|
|
|
|
getPRInfo $REVIEW_ID
|
2019-03-19 17:19:56 +01:00
|
|
|
fi
|
2021-06-21 10:47:46 +02:00
|
|
|
|
2022-01-13 18:03:37 +01:00
|
|
|
# for forks, $head will be in the format "fork:branch", so we split it by ":"
|
|
|
|
# into an array. On non-forks, this has the effect of splitting into a single
|
|
|
|
# element array given ":" shouldn't appear in the head - it'll just be the
|
|
|
|
# branch name. Based on the results, we clone.
|
2021-08-29 13:42:12 +02:00
|
|
|
BRANCH_ARRAY=(${head//:/ })
|
2022-01-13 18:03:37 +01:00
|
|
|
TRY_ORG=$deforg
|
|
|
|
TRY_BRANCH=${BRANCH_ARRAY[0]}
|
|
|
|
if [[ "$head" == *":"* ]]; then
|
2022-03-28 22:26:03 +02:00
|
|
|
# ... but only match that fork if it's a real fork
|
2022-05-04 21:29:34 +02:00
|
|
|
if [ "${BRANCH_ARRAY[0]}" != "$PR_ORG" ]; then
|
2022-03-28 22:26:03 +02:00
|
|
|
TRY_ORG=${BRANCH_ARRAY[0]}
|
|
|
|
fi
|
2022-01-13 18:03:37 +01:00
|
|
|
TRY_BRANCH=${BRANCH_ARRAY[1]}
|
|
|
|
fi
|
|
|
|
clone ${TRY_ORG} $defrepo ${TRY_BRANCH}
|
2021-08-29 13:42:12 +02:00
|
|
|
|
2019-03-15 18:19:05 +01:00
|
|
|
# Try the target branch of the push or PR.
|
2022-04-29 12:07:42 +02:00
|
|
|
if [ -n "$GITHUB_BASE_REF" ]; then
|
2021-06-21 10:47:46 +02:00
|
|
|
clone $deforg $defrepo $GITHUB_BASE_REF
|
2022-04-29 12:07:42 +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
|