r-builds/Justfile
pat-s a2196ddc49
feat: add alpine-3.24 build config
Mirror the alpine-3.23 setup across the builder Dockerfile/package,
docker-compose service, Makefile/Justfile targets, and the CI matrix.
2026-06-12 15:45:39 +02:00

54 lines
1.4 KiB
Makefile

build-r-ubuntu-2204 R_VERSION:
export PLATFORM=ubuntu-2204; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-ubuntu-2404 R_VERSION:
export PLATFORM=ubuntu-2404; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-ubuntu-2604 R_VERSION:
export PLATFORM=ubuntu-2604; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-centos-8 R_VERSION:
export PLATFORM=centos-8; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-rhel-9 R_VERSION:
export PLATFORM=rhel-9; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-rhel-10 R_VERSION:
export PLATFORM=rhel-10; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-opensuse-155 R_VERSION:
export PLATFORM=opensuse-155; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-alpine-321 R_VERSION:
export PLATFORM=alpine-321; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-alpine-322 R_VERSION:
export PLATFORM=alpine-322; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-alpine-323 R_VERSION:
export PLATFORM=alpine-323; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-alpine-324 R_VERSION:
export PLATFORM=alpine-324; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM