Skip to content

Commit

Permalink
drop jdk/jre 18 & 19; add 21; drop kinetic; add mantic
Browse files Browse the repository at this point in the history
  • Loading branch information
rpardini committed Oct 20, 2023
1 parent dfcc9dd commit cef4433
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ jobs:
VERSION: adoptium-17-jdk-hotspot
TEST_IMAGE: debian:stable

- name: Test install adoptium-19-jdk-hotspot vs debian:stable (amd64)
- name: Test install adoptium-21-jdk-hotspot vs debian:stable (amd64)
working-directory: src
run: ./test.sh
env:
VERSION: adoptium-19-jdk-hotspot
VERSION: adoptium-21-jdk-hotspot
TEST_IMAGE: debian:stable

- name: Test install adoptium-8-jre-hotspot vs ubuntu:rolling (amd64)
Expand Down
4 changes: 2 additions & 2 deletions generator/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
// config
const architectures = new Set(['x64', 'aarch64', 'ppc64le', 's390x', 'arm']);
const archMapJdkToDebian = {'x64': 'amd64', 'aarch64': 'arm64', 'ppc64le': 'ppc64el', 's390x': 's390x', 'arm': 'armel'}; //subtle differences
const wantedJavaVersions = new Set([8, 11, 17, 18, 19]); // official GA releases from adoptium
const wantedJavaVersions = new Set([8, 11, 17, 21]); // official GA releases from adoptium
const linuxesAndDistros = new Set([
{
name: 'ubuntu',
distros: new Set(['trusty', 'xenial', 'bionic', 'focal', 'jammy', 'kinetic']), // LTS ESM releases + last release + next, but not the ones frozen, like hir.sute or gro.ovy
distros: new Set(['trusty', 'xenial', 'bionic', 'focal', 'jammy', 'mantic']), // LTS ESM releases + last release + next, but not the ones frozen, like hir.sute or gro.ovy
standardsVersion: "3.9.7",
useDistroInVersion: true,
singleBinaryForAllArches: false,
Expand Down

0 comments on commit cef4433

Please sign in to comment.