Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release][Go] Remove the Go related parts from the verification script #44152

Open
kou opened this issue Sep 18, 2024 · 1 comment
Open

[Release][Go] Remove the Go related parts from the verification script #44152

kou opened this issue Sep 18, 2024 · 1 comment

Comments

@kou
Copy link
Member

kou commented Sep 18, 2024

Describe the enhancement requested

Because we don't release Apache Arrow Go from apache/arrow.

For example, this part:

test_go() {
show_header "Build and test Go libraries"
maybe_setup_go
maybe_setup_conda compilers go=1.22
pushd go
go get -v ./...
if [ ${TEST_GO} -gt 0 ]; then
go test ./...
fi
go install -buildvcs=false ./...
if [ ${TEST_INTEGRATION_GO} -gt 0 ]; then
pushd arrow/internal/cdata_integration
case "$(uname)" in
Linux)
go_lib="arrow_go_integration.so"
;;
Darwin)
go_lib="arrow_go_integration.dylib"
;;
MINGW*)
go_lib="arrow_go_integration.dll"
;;
esac
CGO_ENABLED=1 go build -buildvcs=false -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .
popd
fi
go clean -modcache
popd
}

Component(s)

Go, Release

@kou
Copy link
Member Author

kou commented Sep 20, 2024

GH-44172 will include this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant