r-builds/Justfile
pat-s 782707f352
Some checks failed
ci/crow/manual/build/4 Pipeline failed
ci/crow/manual/build/1 Pipeline failed
ci/crow/manual/build/9 Pipeline failed
ci/crow/manual/build/11 Pipeline failed
ci/crow/manual/build/5 Pipeline failed
ci/crow/manual/build/6 Pipeline failed
ci/crow/manual/build/2 Pipeline was successful
ci/crow/manual/build/3 Pipeline was successful
ci/crow/manual/build/8 Pipeline failed
ci/crow/manual/build/10 Pipeline failed
ci/crow/manual/build/12 Pipeline failed
ci/crow/manual/build/7 Pipeline failed
ci/crow/manual/build/16 Pipeline failed
ci/crow/manual/build/13 Pipeline failed
ci/crow/manual/build/14 Pipeline failed
ci/crow/manual/build/15 Pipeline failed
feat: add Ubuntu 26.04 (Resolute) support
Add Dockerfile, package script, and CI/build configuration for ubuntu-2604 across all build targets.
2026-04-24 13:20:25 +02:00

49 lines
1.3 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