2019-02-12 11:53:42 -05:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
2020-12-10 18:49:21 -05:00
|
|
|
fetch() {
|
|
|
|
local remote=$1
|
|
|
|
local ref=$2
|
|
|
|
|
2020-12-10 19:36:09 -05:00
|
|
|
git fetch --quiet --depth=1 $remote $ref 2>/dev/null
|
2020-12-10 18:49:21 -05:00
|
|
|
}
|
|
|
|
|
2019-02-12 11:53:42 -05:00
|
|
|
mutter_target=
|
|
|
|
|
2020-12-11 08:30:05 -05:00
|
|
|
echo -n Cloning into mutter ...
|
2020-12-10 19:36:09 -05:00
|
|
|
if git clone --quiet --depth=1 https://gitlab.gnome.org/GNOME/mutter.git; then
|
2020-12-11 08:30:05 -05:00
|
|
|
echo \ done
|
|
|
|
else
|
|
|
|
echo \ failed
|
2019-02-12 11:53:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd mutter
|
|
|
|
|
|
|
|
if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then
|
|
|
|
merge_request_remote=${CI_MERGE_REQUEST_SOURCE_PROJECT_URL//gnome-shell/mutter}
|
|
|
|
merge_request_branch=$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
|
|
|
|
|
2020-12-11 08:30:05 -05:00
|
|
|
echo -n Looking for $merge_request_branch on remote ...
|
2020-12-10 18:49:21 -05:00
|
|
|
if fetch $merge_request_remote $merge_request_branch; then
|
2020-12-11 08:30:05 -05:00
|
|
|
echo \ found
|
2019-02-12 11:53:42 -05:00
|
|
|
mutter_target=FETCH_HEAD
|
2019-04-23 13:04:21 -04:00
|
|
|
else
|
2020-12-11 08:30:05 -05:00
|
|
|
echo \ not found
|
2020-12-10 19:36:09 -05:00
|
|
|
|
|
|
|
echo -n Looking for $CI_MERGE_REQUEST_TARGET_BRANCH_NAME instead ...
|
|
|
|
if fetch origin $CI_MERGE_REQUEST_TARGET_BRANCH_NAME; then
|
|
|
|
echo \ found
|
|
|
|
mutter_target=FETCH_HEAD
|
|
|
|
else
|
|
|
|
echo \ not found
|
|
|
|
fi
|
2019-02-12 11:53:42 -05:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$mutter_target" ]; then
|
2020-12-11 09:59:11 -05:00
|
|
|
echo -n Looking for $CI_COMMIT_REF_NAME on remote ...
|
|
|
|
if fetch origin $CI_COMMIT_REF_NAME; then
|
2020-12-11 08:30:05 -05:00
|
|
|
echo \ found
|
2020-12-10 18:49:21 -05:00
|
|
|
mutter_target=FETCH_HEAD
|
2020-12-11 08:30:05 -05:00
|
|
|
else
|
|
|
|
echo \ not found
|
|
|
|
fi
|
2019-02-12 11:53:42 -05:00
|
|
|
fi
|
|
|
|
|
2022-05-06 10:45:20 -04:00
|
|
|
fallback_branch=${CI_COMMIT_TAG:+gnome-}${CI_COMMIT_TAG%%.*}
|
|
|
|
if [ -z "$mutter_target" -a "$fallback_branch" ]; then
|
|
|
|
echo -n Looking for $fallback_branch instead ...
|
|
|
|
if fetch origin $fallback_branch; then
|
|
|
|
echo \ found
|
|
|
|
mutter_target=FETCH_HEAD
|
|
|
|
else
|
|
|
|
echo \ not found
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$mutter_target" ]; then
|
|
|
|
mutter_target=HEAD
|
|
|
|
echo Using $mutter_target instead
|
|
|
|
fi
|
|
|
|
|
2019-04-23 12:36:19 -04:00
|
|
|
git checkout -q $mutter_target
|