Skip to content

Commit 133303e

Browse files
amoebajonkeane
authored andcommitted
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 <petridish@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent cc4e0f3 commit 133303e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tasks/r/github.packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
- uses: r-lib/actions/setup-r@v2
4242
with:
43-
install-r: false
43+
install-r: true
4444

4545
- name: Build R source package
4646
shell: bash
@@ -447,7 +447,7 @@ jobs:
447447
- name: Install R
448448
uses: r-lib/actions/setup-r@v2
449449
with:
450-
install-r: false
450+
install-r: true
451451
- name: Rename artifacts
452452
shell: Rscript {0}
453453
run: |

0 commit comments

Comments
 (0)