summaryrefslogtreecommitdiff
path: root/.gitlab-ci/download-git-cache.sh
diff options
context:
space:
mode:
authorAndres Gomez <agomez@igalia.com>2020-08-23 23:32:40 +0300
committerMarge Bot <eric+marge@anholt.net>2020-12-22 18:31:01 +0000
commit6b9b9baeab5fb2733ec053fefad74e60143c9f4e (patch)
tree8f0d85ba82828d4b34bcc521871cd1c53edfe907 /.gitlab-ci/download-git-cache.sh
parent9705434579d2dea081fbd44195b54a4b6bee2b01 (diff)
downloadmesa-6b9b9baeab5fb2733ec053fefad74e60143c9f4e.tar.gz
ci: specify MinIO's host URL in a global variable
Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6388>
Diffstat (limited to '.gitlab-ci/download-git-cache.sh')
-rw-r--r--.gitlab-ci/download-git-cache.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/download-git-cache.sh b/.gitlab-ci/download-git-cache.sh
index 0a6d57031a9..d7c7d72c9b7 100644
--- a/.gitlab-ci/download-git-cache.sh
+++ b/.gitlab-ci/download-git-cache.sh
@@ -17,7 +17,7 @@ TMP_DIR=$(mktemp -d)
echo "Downloading archived master..."
/usr/bin/wget -O $TMP_DIR/mesa.tar.gz \
- https://minio-packet.freedesktop.org/git-cache/${FDO_UPSTREAM_REPO}/mesa.tar.gz
+ https://${MINIO_HOST}/git-cache/${FDO_UPSTREAM_REPO}/mesa.tar.gz
# check wget error code
if [[ $? -ne 0 ]]