Skip to content

Commit 96005e7

Browse files
authored
chore: fix nightly verification run (#2717)
- Bump the Go version to keep up - Explicitly allow using .NET 9 to run tests (though the build targets .NET 8)
1 parent a8e98f1 commit 96005e7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

dev/release/verify-release-candidate.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ install_go() {
296296
return 0
297297
fi
298298

299-
local version=1.21.8
299+
local version=1.24.2
300300
show_info "Installing go version ${version}..."
301301

302302
local arch="$(uname -m)"
@@ -503,11 +503,10 @@ test_cpp() {
503503

504504
# Build and test C++
505505
maybe_setup_go
506-
# XXX: pin Python for now since various other packages haven't caught up
507506
maybe_setup_conda \
508507
--file ci/conda_env_cpp.txt \
509508
compilers \
510-
go=1.22 python=3.12 || exit 1
509+
go python || exit 1
511510

512511
if [ "${USE_CONDA}" -gt 0 ]; then
513512
export CMAKE_PREFIX_PATH="${CONDA_BACKUP_CMAKE_PREFIX_PATH}:${CMAKE_PREFIX_PATH}"
@@ -637,6 +636,8 @@ test_csharp() {
637636
maybe_setup_dotnet
638637
maybe_setup_conda dotnet || exit 1
639638

639+
export DOTNET_ROLL_FORWARD=LatestMajor
640+
640641
"${ADBC_DIR}/ci/scripts/csharp_build.sh" "${ADBC_SOURCE_DIR}"
641642
"${ADBC_DIR}/ci/scripts/csharp_test.sh" "${ADBC_SOURCE_DIR}"
642643
}
@@ -661,7 +662,7 @@ test_go() {
661662
# apache/arrow-adbc#517: `go build` calls git. Don't assume system
662663
# has git; even if it's there, go_build.sh sets DYLD_LIBRARY_PATH
663664
# which can interfere with system git.
664-
maybe_setup_conda compilers git go=1.22 || exit 1
665+
maybe_setup_conda compilers git go || exit 1
665666

666667
if [ "${USE_CONDA}" -gt 0 ]; then
667668
# The CMake setup forces RPATH to be the Conda prefix

0 commit comments

Comments
 (0)