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 9db65ea6e ci(r): ensure installing the required version of Go on
windows (#3818)
9db65ea6e is described below
commit 9db65ea6e7f905ff43db48018028b6000fa8b93e
Author: eitsupi <[email protected]>
AuthorDate: Thu Dec 18 01:17:13 2025 +0900
ci(r): ensure installing the required version of Go on windows (#3818)
It seems that the problem was that powershell was used instead of bash
on Windows, so the Go version was not set in the environment variables
and causing the error.
---
.github/workflows/r-check.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/r-check.yml b/.github/workflows/r-check.yml
index 29a87de4f..1065ca7e7 100644
--- a/.github/workflows/r-check.yml
+++ b/.github/workflows/r-check.yml
@@ -39,6 +39,10 @@ on:
SNOWFLAKE_URI:
required: false
+defaults:
+ run:
+ shell: bash
+
jobs:
r-check:
runs-on: ${{ inputs.os }}-latest
@@ -74,7 +78,6 @@ jobs:
pushd "r/${{ inputs.pkg }}"
Rscript bootstrap.R
popd
- shell: bash
- uses:
r-lib/actions/setup-r-dependencies@6f6e5bc62fba3a704f74e7ad7ef7676c5c6a2590
with: