This is an automated email from the ASF dual-hosted git repository.
thisisnic 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 0fb2c8efaf GH-49737: [R][CI] Disable Rhub GCC 12 and GCC 13 with LTO
jobs - images no longer match CRAN (#49739)
0fb2c8efaf is described below
commit 0fb2c8efaf15372c102d3cf35782a5e2d8941e66
Author: Nic Crane <[email protected]>
AuthorDate: Tue Apr 14 12:19:19 2026 +0100
GH-49737: [R][CI] Disable Rhub GCC 12 and GCC 13 with LTO jobs - images no
longer match CRAN (#49739)
### Rationale for this change
Disable failing + out of date CI jobs until we have a container with GCC 15
to replace them
### What changes are included in this PR?
Disable them - leave commented out as we'll replace later
### Are these changes tested?
No
### Are there any user-facing changes?
No
* GitHub Issue: #49737
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
.github/workflows/r_extra.yml | 36 +++++++++++++++++++++---------------
1 file changed, 21 insertions(+), 15 deletions(-)
diff --git a/.github/workflows/r_extra.yml b/.github/workflows/r_extra.yml
index 9ac9aa6a42..c8a13e11d1 100644
--- a/.github/workflows/r_extra.yml
+++ b/.github/workflows/r_extra.yml
@@ -130,21 +130,27 @@ jobs:
image: r
runs-on: ubuntu-latest
title: Rhub
- - envs:
- - R_CUSTOM_CCACHE=true
- - R_IMAGE=ubuntu-gcc12
- - R_ORG=rhub
- image: r
- runs-on: ubuntu-latest
- title: Rhub GCC 12
- - envs:
- - R_IMAGE=gcc13
- - R_ORG=rhub
- image: r
- runs-on: ubuntu-latest
- run-options: >-
- -e INSTALL_ARGS=--use-LTO
- title: Rhub GCC 13 with LTO
+ # Disabled: rhub/ubuntu-gcc12 image uses GCC 12 but CRAN now uses
GCC 15.
+ # See https://github.com/apache/arrow/issues/49737
+ # Re-enable once r-hub/containers provides a GCC 15 image (#49738).
+ # - envs:
+ # - R_CUSTOM_CCACHE=true
+ # - R_IMAGE=ubuntu-gcc12
+ # - R_ORG=rhub
+ # image: r
+ # runs-on: ubuntu-latest
+ # title: Rhub GCC 12
+ # Disabled: rhub/gcc13 image uses GCC 13 but CRAN now uses GCC 15.
+ # See https://github.com/apache/arrow/issues/49737
+ # Re-enable once r-hub/containers provides a GCC 15 image (#49738).
+ # - envs:
+ # - R_IMAGE=gcc13
+ # - R_ORG=rhub
+ # image: r
+ # runs-on: ubuntu-latest
+ # run-options: >-
+ # -e INSTALL_ARGS=--use-LTO
+ # title: Rhub GCC 13 with LTO
- envs:
- R_IMAGE=r-base
- R_ORG=rstudio