mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 02:04:41 +08:00
72b3c2e4ba
As for the S3 bucket where the kernel image is stored has been identified and labeled, the other buckets in use can also be identified and labeled. cc: mesa-stable Signed-off-by: Sergi Blanch Torne <sergi.blanch.torne@collabora.com> Co-developed-by: Guilherme Gallo <guilherme.gallo@collabora.com Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28979>
37 lines
909 B
Bash
37 lines
909 B
Bash
#!/usr/bin/env bash
|
|
|
|
set +e
|
|
set -o xtrace
|
|
|
|
# if we run this script outside of gitlab-ci for testing, ensure
|
|
# we got meaningful variables
|
|
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(mktemp -d)/$CI_PROJECT_NAME}
|
|
|
|
if [[ -e $CI_PROJECT_DIR/.git ]]
|
|
then
|
|
echo "Repository already present, skip cache download"
|
|
exit
|
|
fi
|
|
|
|
TMP_DIR=$(mktemp -d)
|
|
|
|
echo "$(date +"%F %T") Downloading archived master..."
|
|
if ! /usr/bin/wget \
|
|
-O "$TMP_DIR/$CI_PROJECT_NAME.tar.gz" \
|
|
"https://${S3_HOST}/${S3_GITCACHE_BUCKET}/${FDO_UPSTREAM_REPO}/$CI_PROJECT_NAME.tar.gz";
|
|
then
|
|
echo "Repository cache not available"
|
|
exit
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf "$CI_PROJECT_DIR"
|
|
echo "$(date +"%F %T") Extracting tarball into '$CI_PROJECT_DIR'..."
|
|
mkdir -p "$CI_PROJECT_DIR"
|
|
tar xzf "$TMP_DIR/$CI_PROJECT_NAME.tar.gz" -C "$CI_PROJECT_DIR"
|
|
rm -rf "$TMP_DIR"
|
|
chmod a+w "$CI_PROJECT_DIR"
|
|
|
|
echo "$(date +"%F %T") Git cache download done"
|