Skip to content

Commit

Permalink
Add Alpine 3.20, remove Alpine 3.16
Browse files Browse the repository at this point in the history
3.20 was released 2024-05-22
3.16 was EOL 2024-05-23
  • Loading branch information
gaborcsardi committed Sep 10, 2024
1 parent de481ac commit 892a9cc
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 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 noble buster bullseye bookworm sid centos7 centos8 rockylinux9 opensuse155 opensuse156 fedora38 fedora39 fedora40 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 opensuse155 opensuse156 fedora38 fedora39 fedora40 alpine-3.17 alpine-3.18 alpine-3.19 alpine-3.20 alpine-edge

RULES ?= rules/*.json

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

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 @@ -81,7 +81,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.17", "3.18", "3.19", "edge" ]
"versions": [ "3.17", "3.18", "3.19", "3.20", "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", "3.19", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "3.20", "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", "3.19", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "3.20", "edge" ]
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion rules/protobuf-grpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": ["3.17", "3.18", "3.19", "edge"]
"versions": ["3.17", "3.18", "3.19", "3.20", "edge"]
}
]
},
Expand Down
1 change: 1 addition & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
"3.17",
"3.18",
"3.19",
"3.20",
"edge"
]
},
Expand Down
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", "3.19", "edge" ]
"versions": [ "3.15", "3.16", "3.17", "3.18", "3.19", "3.20", "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=(
[fedora38]='fedora'
[fedora39]='fedora'
[fedora40]='fedora'
[alpine-3.16]='alpine'
[alpine-3.17]='alpine'
[alpine-3.18]='alpine'
[alpine-3.19]='alpine'
[alpine-3.20]='alpine'
[alpine-edge]='alpine'
)

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

Expand Down

0 comments on commit 892a9cc

Please sign in to comment.