raulcd opened a new issue, #967: URL: https://github.com/apache/arrow-go/issues/967
### Describe the bug, including details regarding any error messages, version, and platform. When running the verification script locally if no go is present the following is exercised: https://github.com/apache/arrow-go/blob/237de00e04e89e49eb618e8303aaa8dc791ee267/dev/release/verify_rc.sh#L137-L155 This orders latest versions released for go and proceeds to download the latest. The problem is that if the latest is a RC or a Beta it tries to download that one. We should not run verification with RCs or Beta, i.e. for the 18.7.0 Arrow Go release, it downloaded 1.27rc2: ```bash + go version dev/release/verify_rc.sh: line 159: go: command not found + local go_version ++ latest_go_version ++ local -a options ++ options=(--fail --location --show-error --silent) ++ '[' -n '' ']' ++ curl --fail --location --show-error --silent https://api.github.com/repos/golang/go/git/matching-refs/tags/go ++ jq -r ' .[] | .ref' ++ sort -V ++ tail -1 ++ sed s,refs/tags/go,,g + go_version=1.27rc2 ``` And it was failing for me due to issues with go itself: ``` FAIL + cleanup + go clean -modcache + '[' no = yes ']' + echo 'Failed to verify release candidate. See /tmp/arrow-go-18.7.0-0.DTLUE for details.' ``` ### Component(s) Release -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
