Skip to content

Commit

Permalink
apacheGH-45708: [Release] Re-run binary verification jobs after we up…
Browse files Browse the repository at this point in the history
…load binaries

We don't need to run new crossbow jobs. We need to re-run GitHub
Actions workflow for apache-arrow-X.Y.Z-rcN tag instead.
  • Loading branch information
kou committed Mar 11, 2025
1 parent 5ff10fd commit 90bcd9f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ repos:
?^ci/scripts/c_glib_build\.sh$|
?^ci/scripts/c_glib_test\.sh$|
?^c_glib/test/run-test\.sh$|
?^dev/release/07-binary-verify\.sh$|
?^dev/release/utils-generate-checksum\.sh$|
)
- repo: https://github.com/trim21/pre-commit-mirror-meson
Expand Down
23 changes: 13 additions & 10 deletions dev/release/07-binary-verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,17 @@ fi
version=$1
rc=$2

rc_branch="release-${version}-rc${rc}"
rc_tag="apache-arrow-${version}-rc${rc}"
repository="${REPOSITORY:-apache/arrow}"

archery crossbow \
verify-release-candidate \
--head-branch=${rc_branch} \
--pr-title="WIP: [Release] Verify ${rc_branch}" \
--rc=${rc} \
--remote=https://github.com/apache/arrow \
--verify-binaries \
--verify-wheels \
--version=${version}
run_id=$(gh run list \
--branch "${rc_tag}" \
--jq '.[].databaseId' \
--json databaseId \
--limit 1 \
--repo "${repository}" \
--workflow "verify_rc.yml")
gh run rerun \
"${run_id}" \
--failed \
--repo "${repository}"

0 comments on commit 90bcd9f

Please sign in to comment.