2019-03-20 00:19:56 +08:00
|
|
|
#!/bin/bash
|
2018-05-02 18:03:40 +08:00
|
|
|
|
2019-03-20 00:19:56 +08:00
|
|
|
set -x
|
|
|
|
|
|
|
|
deforg="$1"
|
|
|
|
defrepo="$2"
|
2018-12-22 10:16:37 +08:00
|
|
|
defbranch="$3"
|
|
|
|
|
|
|
|
[ -z "$defbranch" ] && defbranch="develop"
|
2018-05-02 18:03:40 +08:00
|
|
|
|
2019-03-20 00:19:56 +08:00
|
|
|
rm -r "$defrepo" || true
|
2018-05-02 23:49:08 +08:00
|
|
|
|
2021-09-02 04:43:37 +08:00
|
|
|
# A function that clones a branch of a repo based on the org, repo and branch
|
2018-12-21 06:13:40 +08:00
|
|
|
clone() {
|
2019-03-20 00:19:56 +08:00
|
|
|
org=$1
|
|
|
|
repo=$2
|
|
|
|
branch=$3
|
2018-12-21 06:13:40 +08:00
|
|
|
if [ -n "$branch" ]
|
|
|
|
then
|
2019-03-20 00:19:56 +08:00
|
|
|
echo "Trying to use $org/$repo#$branch"
|
2020-01-22 01:59:33 +08:00
|
|
|
git clone git://github.com/$org/$repo.git $repo --branch "$branch" --depth 1 && exit 0
|
2018-12-21 06:13:40 +08:00
|
|
|
fi
|
|
|
|
}
|
2018-05-02 22:53:38 +08:00
|
|
|
|
2021-08-29 19:42:12 +08: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-09 01:05:35 +08:00
|
|
|
|
2021-08-29 19:42:12 +08:00
|
|
|
apiEndpoint="https://api.github.com/repos/matrix-org/matrix-react-sdk/pulls/"
|
|
|
|
apiEndpoint+=$number
|
2021-06-22 21:11:41 +08:00
|
|
|
|
2021-08-29 19:42:12 +08:00
|
|
|
head=$(curl $apiEndpoint | jq -r '.head.label')
|
2021-06-21 23:18:13 +08:00
|
|
|
fi
|
2021-08-29 19:42:12 +08:00
|
|
|
}
|
2021-06-22 16:31:15 +08:00
|
|
|
|
2021-08-29 19:42:12 +08: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-20 00:19:56 +08:00
|
|
|
fi
|
2021-06-21 16:47:46 +08:00
|
|
|
|
2021-08-29 19:42:12 +08:00
|
|
|
# $head will always be in the format "fork:branch", so we split it by ":" into
|
|
|
|
# an array. The first element will then be the fork and the second the branch.
|
|
|
|
# Based on that we clone
|
|
|
|
BRANCH_ARRAY=(${head//:/ })
|
|
|
|
clone ${BRANCH_ARRAY[0]} $defrepo ${BRANCH_ARRAY[1]}
|
|
|
|
|
2019-03-16 01:19:05 +08:00
|
|
|
# Try the target branch of the push or PR.
|
2021-06-22 21:11:41 +08:00
|
|
|
if [ -n $GITHUB_BASE_REF ]; then
|
2021-06-21 16:47:46 +08:00
|
|
|
clone $deforg $defrepo $GITHUB_BASE_REF
|
2021-06-22 21:11:41 +08:00
|
|
|
elif [ -n $BUILDKITE_PULL_REQUEST_BASE_BRANCH ]; then
|
2021-06-21 16:47:46 +08:00
|
|
|
clone $deforg $defrepo $BUILDKITE_PULL_REQUEST_BASE_BRANCH
|
|
|
|
fi
|
|
|
|
|
2020-12-04 02:40:33 +08: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 07:00:23 +08:00
|
|
|
# Use the default branch as the last resort.
|
2019-03-20 00:19:56 +08:00
|
|
|
clone $deforg $defrepo $defbranch
|