thisisnic commented on code in PR #48014:
URL: https://github.com/apache/arrow/pull/48014#discussion_r2626748969
##########
compose.yaml:
##########
@@ -1774,6 +1775,35 @@ services:
command: >
/bin/bash -c "/arrow/ci/scripts/r_revdepcheck.sh /arrow"
+ alpine-linux-r:
+ # Usage:
+ # docker compose build alpine-linux-r
+ # docker compose run alpine-linux-r
+ # Tests R package installation on musl (Alpine Linux) for CRAN checks.
+ # R package builds C++ from source (bundled RE2 2023-03-01 supports musl).
+ # Parameters:
+ # ALPINE_LINUX: 3.22
+ # R: 4.5 (Alpine's R version)
+ # ARCH: amd64, arm64v8, ...
+ image: ${REPO}:${ARCH}-alpine-linux-${ALPINE_LINUX}-r
+ build:
+ context: .
+ dockerfile: ci/docker/alpine-linux-${ALPINE_LINUX}-r.dockerfile
+ cache_from:
+ - ${REPO}:${ARCH}-alpine-linux-${ALPINE_LINUX}-r
+ args:
+ arch: ${ARCH}
+ shm_size: *shm-size
+ environment:
+ <<: [*common, *sccache]
+ LIBARROW_BINARY: "false"
+ ARROW_SOURCE_HOME: "/arrow"
+ ARROW_R_DEV: "TRUE"
Review Comment:
Good point; updated.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]