Skip to content

Commit

Permalink
Merge branch 'main' into pak
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Apr 17, 2024
2 parents 07ee5fb + 9cf384f commit 35f4693
Show file tree
Hide file tree
Showing 10 changed files with 1,469 additions and 2,251 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IMAGE ?= rstudio/r-system-requirements
VARIANTS ?= focal jammy buster bullseye bookworm sid centos7 centos8 rockylinux9 opensuse154 opensuse155 fedora36 fedora37 fedora38 fedora39 alpine-3.16 alpine-3.17 alpine-3.18 alpine-3.19 alpine-edge
VARIANTS ?= focal jammy noble buster bullseye bookworm sid centos7 centos8 rockylinux9 opensuse154 opensuse155 fedora36 fedora37 fedora38 fedora39 alpine-3.16 alpine-3.17 alpine-3.18 alpine-3.19 alpine-edge

RULES ?= rules/*.json

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Both tests run with R 3.5.3 for all CRAN packages as of April 4, 2019.

The rules in this catalog support the following operating systems:

- Ubuntu 20.04, 22.04
- Ubuntu 20.04, 22.04, 24.04
- CentOS 7
- Rocky Linux 8*, 9
- Red Hat Enterprise Linux 7, 8, 9
Expand Down Expand Up @@ -285,6 +285,7 @@ packages on supported OSs.
Available tags:
- `focal` (Ubuntu 20.04)
- `jammy` (Ubuntu 22.04)
- `noble` (Ubuntu 24.04)
- `buster` (Debian 10)
- `bullseye` (Debian 11)
- `bookworm` (Debian 12)
Expand Down
8 changes: 8 additions & 0 deletions docker/noble/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ubuntu:noble

RUN apt-get update -qq && \
DEBIAN_FRONTEND=noninteractive apt-get install -y curl

# Install jq
RUN curl -fsSL -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && \
chmod +x /usr/local/bin/jq
2 changes: 1 addition & 1 deletion rules/libgit2.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{
"os": "linux",
"distribution": "ubuntu",
"versions": ["20.04", "22.04"]
"versions": ["20.04", "22.04", "24.04"]
},
{
"os": "linux",
Expand Down
3 changes: 2 additions & 1 deletion rules/pandoc-citeproc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"constraints": [
{
"os": "linux",
"distribution": "ubuntu"
"distribution": "ubuntu",
"versions": ["14.04", "16.04", "18.04", "20.04", "22.04"]
},
{
"os": "linux",
Expand Down
2 changes: 1 addition & 1 deletion rules/v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"os": "linux",
"distribution": "ubuntu",
"versions": ["20.04", "22.04"]
"versions": ["20.04", "22.04", "24.04"]
},
{
"os": "linux",
Expand Down
3 changes: 2 additions & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@
"16.04",
"18.04",
"20.04",
"22.04"
"22.04",
"24.04"
]
},
"centos": {
Expand Down
2 changes: 1 addition & 1 deletion systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"os": "linux",
"distribution": "ubuntu",
"versions": [ "14.04", "16.04", "18.04", "20.04", "22.04" ]
"versions": [ "14.04", "16.04", "18.04", "20.04", "22.04", "24.04" ]
},
{
"os": "linux",
Expand Down
Loading

0 comments on commit 35f4693

Please sign in to comment.