From 2b1fb86210f2d77a67a013a4d375a2d859a886c6 Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Wed, 17 Jul 2024 10:54:02 +0200 Subject: [PATCH] Add JDK 22 images --- .github/workflows/ci.yml | 2 ++ settings.sh | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ae4fd5..65ec341 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: default_image: false - jdk_version: java21 default_image: false + - jdk_version: java22 + default_image: false timeout-minutes: 45 steps: - uses: actions/checkout@v2 diff --git a/settings.sh b/settings.sh index 7810381..a137e78 100644 --- a/settings.sh +++ b/settings.sh @@ -13,6 +13,9 @@ elif [ "${JDK_VERSION}" = "java20" ]; then elif [ "${JDK_VERSION}" = "java21" ]; then GRAAL_JDK_VERSION="21.0.2" BUILD_POLYGLOT=false +elif [ "${JDK_VERSION}" = "java21" ]; then + GRAAL_JDK_VERSION="22.0.2" + BUILD_POLYGLOT=false else echo "Unknown JDK_VERSION ${JDK_VERSION}" >&2 exit 1