This is an automated email from the ASF dual-hosted git repository.

jackylee-ch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 6ade09d0b1 [GLUTEN][CI] Download MinIO binaries from GitHub releases 
instead of dl.min.io (#13012)
6ade09d0b1 is described below

commit 6ade09d0b1e4ab2e91a849516d94a900774bbf02
Author: YangJie <[email protected]>
AuthorDate: Sun Sep 13 21:16:10 2026 -0400

    [GLUTEN][CI] Download MinIO binaries from GitHub releases instead of 
dl.min.io (#13012)
---
 .github/workflows/util/install-spark-deps.sh | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/util/install-spark-deps.sh 
b/.github/workflows/util/install-spark-deps.sh
index fda2ec8148..51036f4ddd 100755
--- a/.github/workflows/util/install-spark-deps.sh
+++ b/.github/workflows/util/install-spark-deps.sh
@@ -98,10 +98,18 @@ function install_minio {
   apt-get update -y
   apt-get install -y curl
 
-  curl -fsSL -o /usr/local/bin/minio 
https://dl.min.io/server/minio/release/linux-amd64/minio
+  # dl.min.io no longer serves the community binaries (HTTP 410), so pull 
pinned
+  # release assets from GitHub. minio's latest release ships no assets, so the
+  # server has to be pinned to the last release that still has them.
+  local minio_version="RELEASE.2025-09-07T16-13-09Z"
+  local mc_version="RELEASE.2025-08-13T08-35-41Z"
+
+  curl -fsSL -o /usr/local/bin/minio \
+    
"https://github.com/minio/minio/releases/download/${minio_version}/minio.linux-amd64.${minio_version}";
   chmod +x /usr/local/bin/minio
 
-  curl -fsSL -o /usr/local/bin/mc 
https://dl.min.io/client/mc/release/linux-amd64/mc
+  curl -fsSL -o /usr/local/bin/mc \
+    
"https://github.com/minio/mc/releases/download/${mc_version}/mc.linux-amd64.${mc_version}";
   chmod +x /usr/local/bin/mc
 
   echo "MinIO installed successfully"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to