This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 6f66f1f0ed GH-45069: [R][CI] Fix r-binary-packages crossbow job
(#45070)
6f66f1f0ed is described below
commit 6f66f1f0ed235ac640d88dbe96e76d9e889dc66c
Author: Bryce Mecum <[email protected]>
AuthorDate: Wed Dec 18 16:37:24 2024 -0800
GH-45069: [R][CI] Fix r-binary-packages crossbow job (#45070)
### Rationale for this change
GitHub phased out R from their Ubuntu images in their 24.04 image and this
job started failing because of it. We now need to install R ourselves if a job
needs it and uses ubuntu-latest (>=24.04).
### What changes are included in this PR?
Change in GHA workflow config to always install R.
### Are these changes tested?
They're testing here with crossbow.
### Are there any user-facing changes?
No.
* GitHub Issue: #45069
Authored-by: Bryce Mecum <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/tasks/r/github.packages.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev/tasks/r/github.packages.yml b/dev/tasks/r/github.packages.yml
index 839e3d5341..181e978569 100644
--- a/dev/tasks/r/github.packages.yml
+++ b/dev/tasks/r/github.packages.yml
@@ -40,7 +40,7 @@ jobs:
- uses: r-lib/actions/setup-r@v2
with:
- install-r: false
+ install-r: true
- name: Build R source package
shell: bash
@@ -447,7 +447,7 @@ jobs:
- name: Install R
uses: r-lib/actions/setup-r@v2
with:
- install-r: false
+ install-r: true
- name: Rename artifacts
shell: Rscript {0}
run: |