r-builds/Justfile

34 lines
905 B
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-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-opensuse-155 R_VERSION:
export PLATFORM=opensuse-155; \
export R_VERSION={{R_VERSION}}; \
make build-r-$PLATFORM
build-r-alpine-320 R_VERSION:
export PLATFORM=alpine-320; \
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