This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new a2ce461f88 GH-50360: [Release] Remove stray
Apache-Arrow-Flight-SQL-ODBC-*-win64.msi from 04-binary-download.sh and
05-binary-upload.sh (#50362)
a2ce461f88 is described below
commit a2ce461f8818e9c86bfddbddba594abc72a4de16
Author: Raúl Cumplido <[email protected]>
AuthorDate: Sat Jul 4 00:22:03 2026 +0200
GH-50360: [Release] Remove stray Apache-Arrow-Flight-SQL-ODBC-*-win64.msi
from 04-binary-download.sh and 05-binary-upload.sh (#50362)
### Rationale for this change
When executing `05-binary-upload.sh` the process failed because the
`Apache-Arrow-Flight-SQL-ODBC-*-win64.msi` isn't present.
The process changed and now `dev/release/07-flightsqlodbc-upload.sh` will
download the following unsigned file:
[arrow_flight_sql_odbc_unsigned.dll](https://github.com/apache/arrow/releases/download/untagged-f0e9f29aea11207ee944/arrow_flight_sql_odbc_unsigned.dll)
from the GitHub release, sign and generated the
`Apache-Arrow-Flight-SQL-ODBC-*-win64.msi` file.
### What changes are included in this PR?
Remove trying to download and sign from steps 04 and 05 the ODBC driver msi.
### Are these changes tested?
No
### Are there any user-facing changes?
No
* GitHub Issue: #50360
Lead-authored-by: Raúl Cumplido <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/release/04-binary-download.sh | 3 +--
dev/release/05-binary-upload.sh | 5 -----
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/dev/release/04-binary-download.sh
b/dev/release/04-binary-download.sh
index 210a9406c2..68e1664b59 100755
--- a/dev/release/04-binary-download.sh
+++ b/dev/release/04-binary-download.sh
@@ -46,7 +46,7 @@ tag="apache-arrow-${version_with_rc}"
archery crossbow download-artifacts --no-fetch ${CROSSBOW_JOB_ID} "$@"
-# Download Linux packages and ODBC MSI.
+# Download Linux packages.
gh release download "${tag}" \
--dir "packages/${CROSSBOW_JOB_ID}" \
--pattern "almalinux-*.tar.gz" \
@@ -54,6 +54,5 @@ gh release download "${tag}" \
--pattern "centos-*.tar.gz" \
--pattern "debian-*.tar.gz" \
--pattern "ubuntu-*.tar.gz" \
- --pattern "Apache-Arrow-Flight-SQL-ODBC-*-win64.msi" \
--repo "${REPOSITORY:-apache/arrow}" \
--skip-existing
diff --git a/dev/release/05-binary-upload.sh b/dev/release/05-binary-upload.sh
index 45793dd6ec..f628cce0e0 100755
--- a/dev/release/05-binary-upload.sh
+++ b/dev/release/05-binary-upload.sh
@@ -67,7 +67,6 @@ cd "${SOURCE_DIR}"
: "${UPLOAD_CENTOS:=${UPLOAD_DEFAULT}}"
: "${UPLOAD_DEBIAN:=${UPLOAD_DEFAULT}}"
: "${UPLOAD_DOCS:=${UPLOAD_DEFAULT}}"
-: "${UPLOAD_ODBC:=${UPLOAD_DEFAULT}}"
: "${UPLOAD_PYTHON:=${UPLOAD_DEFAULT}}"
: "${UPLOAD_R:=${UPLOAD_DEFAULT}}"
: "${UPLOAD_UBUNTU:=${UPLOAD_DEFAULT}}"
@@ -109,10 +108,6 @@ upload_to_github_release() {
if [ "${UPLOAD_DOCS}" -gt 0 ]; then
upload_to_github_release docs "${ARROW_ARTIFACTS_DIR}"/*-docs/*
fi
-if [ "${UPLOAD_ODBC}" -gt 0 ]; then
- upload_to_github_release odbc \
- "${ARROW_ARTIFACTS_DIR}"/Apache-Arrow-Flight-SQL-ODBC-*-win64.msi
-fi
if [ "${UPLOAD_PYTHON}" -gt 0 ]; then
upload_to_github_release python \
"${ARROW_ARTIFACTS_DIR}"/{python-sdist,wheel-*}/*