Skip to content

Commit

Permalink
GH-39588: [CI][Go] Add CGO_ENABLED=1 to cdata_integration build to fi…
Browse files Browse the repository at this point in the history
…x macOS build with conda (#39589)

### Rationale for this change

CI job has been failing since we added integration tests.

### What changes are included in this PR?

Add `CGO_ENABLED=1` to go build cdata_integration on the verification script.

### Are these changes tested?

Yes via archery.

### Are there any user-facing changes?

No
* Closes: #39588

Authored-by: Raúl Cumplido <raulcumplido@gmail.com>
Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
  • Loading branch information
raulcd committed Jan 14, 2024
1 parent 69174f8 commit eb6076f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/release/verify-release-candidate.sh
Expand Up @@ -935,7 +935,7 @@ test_go() {
go_lib="arrow_go_integration.dll"
;;
esac
go build -buildvcs=false -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .
CGO_ENABLED=1 go build -buildvcs=false -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .
popd
fi
go clean -modcache
Expand Down

0 comments on commit eb6076f

Please sign in to comment.