Skip to content

Commit

Permalink
Add Alpine 3.19, drop Alpine 3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Mar 25, 2024
1 parent 3d58e17 commit 74dbf21
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 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.15 alpine-3.16 alpine-3.17 alpine-3.18 alpine-edge
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

RULES ?= rules/*.json

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15
FROM alpine:3.19

RUN apk update && \
apk add curl bash
Expand Down
2 changes: 1 addition & 1 deletion rules/atk.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.17", "3.18", "edge" ]
"versions": [ "3.17", "3.18", "3.19", "edge" ]
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion rules/blender.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.16", "3.17", "3.18", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "edge" ]
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion rules/opencl.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.16", "3.17", "3.18", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "edge" ]
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@
},
"alpine": {
"enum": [
"3.15",
"3.16",
"3.17",
"3.18",
"3.19",
"edge"
]
},
Expand Down Expand Up @@ -415,4 +415,4 @@
"additionalProperties": false
}
}
}
}
2 changes: 1 addition & 1 deletion systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.15", "3.16", "3.17", "3.18", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "edge" ]
},
{
"os": "windows"
Expand Down
4 changes: 2 additions & 2 deletions test/test-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ declare -A os_identifiers=(
[fedora37]='fedora'
[fedora38]='fedora'
[fedora39]='fedora'
[alpine-3.15]='alpine'
[alpine-3.16]='alpine'
[alpine-3.17]='alpine'
[alpine-3.18]='alpine'
[alpine-3.19]='alpine'
[alpine-edge]='alpine'
)

Expand All @@ -53,10 +53,10 @@ declare -A versions=(
[fedora37]='37'
[fedora38]='38'
[fedora39]='39'
[alpine-3.15]='3.15'
[alpine-3.16]='3.16'
[alpine-3.17]='3.17'
[alpine-3.18]='3.18'
[alpine-3.19]='3.19'
[alpine-edge]='edge'
)

Expand Down

0 comments on commit 74dbf21

Please sign in to comment.