Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
*ubuntu* @stevenolen
*ubuntu* @samperman
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PLATFORMS := ubuntu-2004 ubuntu-2204 ubuntu-2404 ubuntu-2604 debian-12 debian-13 centos-7 centos-8 rhel-9 rhel-10 opensuse-156 opensuse-160 fedora-42 fedora-43
PLATFORMS := ubuntu-2204 ubuntu-2404 ubuntu-2604 debian-12 debian-13 centos-7 centos-8 rhel-9 rhel-10 opensuse-156 opensuse-160 fedora-42 fedora-43

docker-build:
@cd builder && docker compose build --parallel
Expand All @@ -10,7 +10,7 @@ docker-build-r: docker-build
@cd builder && docker compose up

docker-shell-r-env:
@cd builder && docker compose run --entrypoint /bin/bash ubuntu-2004
@cd builder && docker compose run --entrypoint /bin/bash ubuntu-2204

define GEN_TARGETS
# Use PLATFORM_ARCH to override the architecture, e.g. PLATFORM_ARCH=linux/arm64 or PLATFORM_ARCH=linux/amd64
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bug, or ask questions on [Posit Community](https://forum.posit.co/).

R binaries are built for the following Linux operating systems:

- Ubuntu 20.04, 22.04, 24.04, 26.04
- Ubuntu 22.04, 24.04, 26.04
- Debian 12, 13
- CentOS 7
- Red Hat Enterprise Linux 7, 8, 9, 10
Expand Down Expand Up @@ -68,9 +68,6 @@ R_VERSION=4.4.3

Download the deb package:
```bash
# Ubuntu 20.04
curl -O https://cdn.posit.co/r/ubuntu-2004/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb

# Ubuntu 22.04
curl -O https://cdn.posit.co/r/ubuntu-2204/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb

Expand Down
24 changes: 0 additions & 24 deletions builder/Dockerfile.ubuntu-2004

This file was deleted.

13 changes: 0 additions & 13 deletions builder/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
services:
ubuntu-2004:
command: ./build.sh
environment:
- R_VERSION=${R_VERSION}
- R_INSTALL_PATH=${R_INSTALL_PATH}
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: Dockerfile.ubuntu-2004
image: r-builds:ubuntu-2004
volumes:
- ./integration/tmp:/tmp/output
platform: ${PLATFORM_ARCH}
ubuntu-2204:
command: ./build.sh
environment:
Expand Down
69 changes: 0 additions & 69 deletions builder/package.ubuntu-2004

This file was deleted.

9 changes: 0 additions & 9 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
services:
ubuntu-2004:
image: ubuntu:focal
command: /r-builds/test/test-apt.sh
environment:
- OS_IDENTIFIER=ubuntu-2004
- R_VERSION=${R_VERSION}
volumes:
- ../:/r-builds
platform: ${PLATFORM_ARCH}
ubuntu-2204:
image: ubuntu:jammy
command: /r-builds/test/test-apt.sh
Expand Down
Loading