Files
element-web/scripts/fetchdep.sh
T

52 lines
1.6 KiB
Bash
Raw Normal View History

2019-03-19 16:19:56 +00:00
#!/bin/bash
2018-05-02 11:03:40 +01:00
2019-03-19 16:19:56 +00:00
set -x
deforg="$1"
defrepo="$2"
defbranch="$3"
[ -z "$defbranch" ] && defbranch="develop"
2018-05-02 11:03:40 +01:00
2019-03-19 16:19:56 +00:00
rm -r "$defrepo" || true
2018-05-02 16:49:08 +01:00
2018-12-20 22:13:40 +00:00
clone() {
2019-03-19 16:19:56 +00:00
org=$1
repo=$2
branch=$3
2018-12-20 22:13:40 +00:00
if [ -n "$branch" ]
then
2019-03-19 16:19:56 +00:00
echo "Trying to use $org/$repo#$branch"
2020-01-21 10:59:33 -07:00
git clone git://github.com/$org/$repo.git $repo --branch "$branch" --depth 1 && exit 0
2018-12-20 22:13:40 +00:00
fi
}
2018-05-02 15:53:38 +01:00
# Try the PR author's branch in case it exists on the deps as well.
# First we check if BUILDKITE_BRANCH is defined,
# if it isn't we can assume this is a Netlify build
if [ -z ${BUILDKITE_BRANCH+x} ]; then
# 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')
else
head=$BUILDKITE_BRANCH
fi
# If head is set, it will contain either:
2019-03-19 16:19:56 +00:00
# * "branch" when the author's branch and target branch are in the same repo
# * "fork:branch" when the author's branch is in their fork or if this is a Netlify build
2019-03-19 16:19:56 +00:00
# We can split on `:` into an array to check.
BRANCH_ARRAY=(${head//:/ })
if [[ "${#BRANCH_ARRAY[@]}" == "1" ]]; then
2019-03-19 16:19:56 +00:00
clone $deforg $defrepo $BUILDKITE_BRANCH
elif [[ "${#BRANCH_ARRAY[@]}" == "2" ]]; then
clone ${BRANCH_ARRAY[0]} $defrepo ${BRANCH_ARRAY[1]}
2019-03-19 16:19:56 +00:00
fi
2019-03-15 11:19:05 -06:00
# Try the target branch of the push or PR.
2019-03-19 16:19:56 +00:00
clone $deforg $defrepo $BUILDKITE_PULL_REQUEST_BASE_BRANCH
2020-12-03 18:40:33 +00:00
# Try HEAD which is the branch name in Netlify (not BRANCH which is pull/xxxx/head for PR builds)
clone $deforg $defrepo $HEAD
# Use the default branch as the last resort.
2019-03-19 16:19:56 +00:00
clone $deforg $defrepo $defbranch