fix(CI): cherry-pick upstream minio download patch - #49
Merged
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Want higher recall? High effort reviews run extra passes and find more bugs. A team admin can switch effort levels in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d4d0201. Configure here.
lorenzhs
force-pushed
the
lorenz/orc-memory-pool-adapter
branch
from
September 21, 2026 08:50
d4d0201 to
718db43
Compare
…ses URL (apache#51326) MinIO download URLs return HTTP 410. They have been removed. Use the same releases from the GitHub releases download URL instead. Cherry-picked from apache/arrow 7e3b55a. Only ci/scripts/install_minio.sh and the Windows wheel test dockerfile carry over: this fork's .env and .github/workflows/cpp.yml have diverged from upstream and reference no MinIO URLs, so they are left alone. Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
lorenzhs
force-pushed
the
lorenz/orc-memory-pool-adapter
branch
from
September 21, 2026 08:56
718db43 to
ab9b415
Compare
tobias-fire
approved these changes
Sep 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Cherry-pick of apache#51326 to fix CI
Note
Low Risk
CI-only download path and supply-chain hardening; no runtime Arrow or library behavior changes.
Overview
CI MinIO installs now pull from GitHub releases because
https://dl.min.ioreturns HTTP 410 (apacheGH-47908).install_minio.shswitches download URLs for minio and mc to the GitHub release asset naming, pins the same release tags as before, and verifies SHA-256 against hardcoded checksums perplatform-archbefore installing. It also drops s390x from the supported arch map, hardens the arch lookup with${archs[$arch]:-}, and adds a.exesuffix on Windows.The Windows wheel test base image Dockerfile is updated the same way:
curl -Lto the matching GitHub release exe instead ofdl.min.io.Reviewed by Cursor Bugbot for commit ab9b415. Bugbot is set up for automated code reviews on this repo. Configure here.