From 4e65a94092cf81eb0ea9378e9bf9a35176fe5e94 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Sun, 16 Feb 2025 09:36:47 +0900 Subject: [PATCH] GH-45508: [CI][R] Remove Ubuntu version from sanitizer jobs (#45509) ### Rationale for this change `ubuntu-r-sanitizer` and `ubuntu-r-valgrind` use `wch1/r-debug` as their base image. So we can't control Ubuntu versions for them. ### What changes are included in this PR? Remove Ubuntu version from their configurations. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #45508 Lead-authored-by: Sutou Kouhei Co-authored-by: Sutou Kouhei Co-authored-by: Jonathan Keane Signed-off-by: Sutou Kouhei --- dev/tasks/tasks.yml | 4 ++-- docker-compose.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml index 881fbcdb48c95..15b4e94b6b8f7 100644 --- a/dev/tasks/tasks.yml +++ b/dev/tasks/tasks.yml @@ -90,7 +90,7 @@ groups: - example-*python* r: - - test*-r-* + - test-r-* - r-binary-packages - r-recheck-most @@ -1289,7 +1289,7 @@ tasks: r_tag: latest flags: "-e LIBARROW_MINIMAL=TRUE" - test-ubuntu-r-sanitizer: + test-r-linux-sanitizer: ci: github template: docker-tests/github.linux.yml params: diff --git a/docker-compose.yml b/docker-compose.yml index 58e88cbd9bf0b..8831ce18b255c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1582,11 +1582,11 @@ services: /bin/bash -c "/arrow/ci/scripts/r_test.sh /arrow" ubuntu-r-sanitizer: - # Only 20.04 and amd64 supported + # Only amd64 supported # Usage: # docker compose build ubuntu-r-sanitizer # docker compose run ubuntu-r-sanitizer - image: ${REPO}:amd64-ubuntu-20.04-r-sanitizer + image: ${REPO}:amd64-ubuntu-r-sanitizer cap_add: # LeakSanitizer and gdb requires ptrace(2) - SYS_PTRACE @@ -1594,7 +1594,7 @@ services: context: . dockerfile: ci/docker/linux-r.dockerfile cache_from: - - ${REPO}:amd64-ubuntu-20.04-r-sanitizer + - ${REPO}:amd64-ubuntu-r-sanitizer args: base: wch1/r-debug:latest cmake: ${CMAKE} @@ -1638,16 +1638,16 @@ services: /arrow/ci/scripts/r_sanitize.sh /arrow" ubuntu-r-valgrind: - # Only 20.04 and amd64 supported + # Only amd64 supported # Usage: # docker compose build ubuntu-r-valgrind # docker compose run ubuntu-r-valgrind - image: ${REPO}:amd64-ubuntu-20.04-r-valgrind + image: ${REPO}:amd64-ubuntu-r-valgrind build: context: . dockerfile: ci/docker/linux-r.dockerfile cache_from: - - ${REPO}:amd64-ubuntu-20.04-r-valgrind + - ${REPO}:amd64-ubuntu-r-valgrind args: base: wch1/r-debug:latest cmake: ${CMAKE}