Skip to content

Commit

Permalink
Hopefully fix Go build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Oct 9, 2023
1 parent 48b636d commit 42f2f3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/scripts/go_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if [[ -n "${ARROW_GO_INTEGRATION}" ]]; then
go_lib="arrow_go_integration.dll"
;;
esac
go build -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .
go build -buildvcs=false -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .

popd
fi
2 changes: 1 addition & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ test_go() {
go_lib="arrow_go_integration.dll"
;;
esac
go build -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .
go build -buildvcs=false -tags cdata_integration,assert -buildmode=c-shared -o ${go_lib} .

popd
popd
Expand Down

0 comments on commit 42f2f3f

Please sign in to comment.