Skip to content

Commit 4125c7b

Browse files
authored
Merge pull request #332 from infosiftr/rm-eol
Remove unsupported/EOL distros from templating
2 parents ff18e55 + d4bf441 commit 4125c7b

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

shared.jq

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,5 @@ def has_openssl_ge_3(variant):
3232
variant | (
3333
# amazonlinux
3434
contains("al2") # corretto
35-
# debian
36-
or contains("bullseye") # openjdk
37-
or contains("buster") # openjdk
38-
# ubuntu
39-
or contains("focal") # temurin
4035
) | not
4136
;

versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ for javaVersion in 21 17 11 8; do
3030
# Eclipse Temurin, followed by OpenJDK, and then all other variants alphabetically
3131
for vendorVariant in \
3232
temurin-{noble,jammy} \
33-
openjdk{,-slim}-{bookworm,bullseye,buster} \
33+
openjdk{,-slim}-{trixie,bookworm} \
3434
corretto-al2 \
3535
; do
3636
for javaVariant in {jdk,jre}"$javaVersion"; do

0 commit comments

Comments
 (0)