Skip to content

Commit

Permalink
Remove Alpine 3.17, add Alpine 3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Mar 1, 2025
1 parent dc43b45 commit f477940
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 13 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 rockylinux8 rockylinux9 opensuse155 opensuse156 fedora39 fedora40 fedora41 alpine-3.17 alpine-3.18 alpine-3.19 alpine-3.20 alpine-edge
VARIANTS ?= focal jammy noble buster bullseye bookworm sid centos7 centos8 rockylinux8 rockylinux9 opensuse155 opensuse156 fedora39 fedora40 fedora41 alpine-3.18 alpine-3.19 alpine-3.20 alpine-3.21 alpine-edge

RULES ?= rules/*.json

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

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": [ "edge" ]
"versions": [ "3.21", "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", "3.20", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "3.20", "3.21", "edge" ]
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion rules/opencl.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.16", "3.17", "3.18", "3.19", "3.20", "edge" ]
"versions": [ "3.16", "3.17", "3.18", "3.19", "3.20", "3.21", "edge" ]
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion rules/openmpt.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.18", "3.19", "3.20", "edge" ]
"versions": [ "3.18", "3.19", "3.20", "3.21", "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", "3.20", "edge"]
"versions": ["3.17", "3.18", "3.19", "3.20", "3.21", "edge"]
}
]
},
Expand Down
10 changes: 10 additions & 0 deletions rules/udunits2.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,16 @@
"command": "apk add udunits-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community"
}
],
"constraints": [
{
"os": "linux",
"distribution": "alpine",
"versions": [ "3.15", "3.16", "3.17", "3.18" ]
}
]
},
{
"packages": ["udunits-dev"],
"constraints": [
{
"os": "linux",
Expand Down
7 changes: 4 additions & 3 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@
},
"rockylinux": {
"enum": [
"9",
"8"
"8",
"9"
]
},
"redhat": {
Expand Down Expand Up @@ -214,6 +214,7 @@
"3.18",
"3.19",
"3.20",
"3.21",
"edge"
]
},
Expand Down Expand Up @@ -423,4 +424,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", "3.19", "3.20", "edge" ]
"versions": [ "3.15", "3.16", "3.17", "3.18", "3.19", "3.20", "3.21", "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 @@ -26,10 +26,10 @@ declare -A os_identifiers=(
[fedora39]='fedora'
[fedora40]='fedora'
[fedora41]='fedora'
[alpine-3.17]='alpine'
[alpine-3.18]='alpine'
[alpine-3.19]='alpine'
[alpine-3.20]='alpine'
[alpine-3.21]='alpine'
[alpine-edge]='alpine'
)

Expand All @@ -55,10 +55,10 @@ declare -A versions=(
[fedora39]='39'
[fedora40]='40'
[fedora41]='41'
[alpine-3.17]='3.17'
[alpine-3.18]='3.18'
[alpine-3.19]='3.19'
[alpine-3.20]='3.20'
[alpine-3.21]='3.21'
[alpine-edge]='edge'
)

Expand Down

0 comments on commit f477940

Please sign in to comment.