This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 468d5032 chore(ci): bump Go for Windows to 1.20.8 (#1157)
468d5032 is described below
commit 468d50324ff4d30a0aa39d1c201a3c48ea2635a7
Author: David Li <[email protected]>
AuthorDate: Wed Oct 4 08:14:45 2023 -0400
chore(ci): bump Go for Windows to 1.20.8 (#1157)
Needed to avoid linker issues with cgo
---
.github/workflows/native-windows.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/native-windows.yml
b/.github/workflows/native-windows.yml
index 5545a7f4..94b80dc5 100644
--- a/.github/workflows/native-windows.yml
+++ b/.github/workflows/native-windows.yml
@@ -223,7 +223,7 @@ jobs:
--file ci/conda_env_cpp.txt
- uses: actions/setup-go@v3
with:
- go-version: 1.19.13
+ go-version: 1.20.8
check-latest: true
cache: true
cache-dependency-path: go/adbc/go.sum
@@ -238,7 +238,7 @@ jobs:
env:
CGO_ENABLED: "1"
run: |
- $env:PATH="$($env:RUNNER_TOOL_CACHE)\go\1.19.13\x64\bin;" + $env:PATH
+ $env:PATH="$($env:RUNNER_TOOL_CACHE)\go\1.20.8\x64\bin;" + $env:PATH
.\ci\scripts\go_build.ps1 $pwd $pwd\build
# TODO(apache/arrow#358): enable these tests on Windows
# - name: Go Test
@@ -246,7 +246,7 @@ jobs:
# env:
# CGO_ENABLED: "1"
# run: |
- # $env:PATH="$($env:RUNNER_TOOL_CACHE)\go\1.19.13\x64\bin;" +
$env:PATH
+ # $env:PATH="$($env:RUNNER_TOOL_CACHE)\go\1.20.8\x64\bin;" +
$env:PATH
# .\ci\scripts\go_test.ps1 $pwd $pwd\build
# ------------------------------------------------------------