2024-01-26 00:48:55 +03:00
#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e
2024-06-04 16:25:03 +03:00
set -o nounset
2024-01-26 00:48:55 +03:00
2024-07-11 17:09:15 +03:00
if ((${NO_SYNC:-0})) || ((${NO_BUILD:-0})); then
2024-05-30 17:24:42 +03:00
exit 0
2024-01-26 00:48:55 +03:00
fi
2024-05-30 17:24:42 +03:00
2024-07-22 11:22:48 +03:00
if [[ -d "pkg/$PKG_SUBDIR/.git" ]]; then
2024-09-20 16:58:32 +03:00
if [[ "$(git -C "pkg/$PKG_SUBDIR" rev-parse HEAD 2>/dev/null)" == "$GIT_COMMIT" ]]; then
2024-07-02 23:27:01 +03:00
exit 0
fi
2024-10-02 11:50:59 +03:00
if [[ -n "$(git -C "pkg/$PKG_SUBDIR" status --porcelain)" ]]; then
exit 0
fi
2024-07-22 11:22:48 +03:00
if ! git -C "pkg/$PKG_SUBDIR" show-ref --quiet "origin/$GIT_BRANCH"; then
git -C "pkg/$PKG_SUBDIR" remote set-url origin "$GIT_URL"
git -C "pkg/$PKG_SUBDIR" fetch origin "$GIT_BRANCH"
2024-07-12 16:33:49 +03:00
fi
2024-07-02 23:27:01 +03:00
# If work is being done on the packaging rules in a separate branch, don't touch the checkout.
2024-07-22 11:22:48 +03:00
if ! git -C "pkg/$PKG_SUBDIR" merge-base --is-ancestor HEAD "origin/$GIT_BRANCH"; then
2024-07-03 14:19:34 +03:00
EXIT_STATUS=$?
if [[ $EXIT_STATUS -eq 1 ]]; then
exit 0
else
exit $EXIT_STATUS
fi
2024-07-02 23:27:01 +03:00
fi
2024-05-30 17:24:42 +03:00
fi
2024-07-22 11:22:48 +03:00
if [[ ! -e "pkg/$PKG_SUBDIR" ]] || [[ -z "$(ls --almost-all "pkg/$PKG_SUBDIR")" ]]; then
2024-06-06 14:23:17 +03:00
# The repository on Salsa has the full upstream sources, so it's a waste of
# space to redownload and duplicate everything, so do a sparse checkout as
# we only need the packaging directory anyway.
if [[ -n "${GIT_SUBDIR:-}" ]]; then
sparse=(--no-checkout --filter=tree:0)
else
sparse=()
fi
2024-07-22 11:22:48 +03:00
git clone "$GIT_URL" --branch "$GIT_BRANCH" "${sparse[@]}" "pkg/$PKG_SUBDIR"
2024-06-06 02:14:37 +03:00
if [[ -n "${GIT_SUBDIR:-}" ]]; then
# --no-cone is needed to check out only one top-level directory
2024-07-22 11:22:48 +03:00
git -C "pkg/$PKG_SUBDIR" sparse-checkout set --no-cone "${GIT_SUBDIR:-}"
2024-06-06 02:14:37 +03:00
fi
2024-09-20 16:58:32 +03:00
elif ! git -C "pkg/$PKG_SUBDIR" cat-file -e "$GIT_COMMIT^{commit}" 2>/dev/null; then
2024-07-22 11:22:48 +03:00
git -C "pkg/$PKG_SUBDIR" remote set-url origin "$GIT_URL"
git -C "pkg/$PKG_SUBDIR" fetch origin "$GIT_BRANCH"
2024-05-30 17:24:42 +03:00
fi
2024-07-22 11:22:48 +03:00
git -C "pkg/$PKG_SUBDIR" -c advice.detachedHead=false checkout "$GIT_COMMIT"