From 423f4aeda3b0bdfbe97d6528f9a7f388e07d7b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Mon, 11 Jul 2022 10:51:04 +0200 Subject: [PATCH] Test against JDK 20 (early access) --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0496fb3b43..a169c8436f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,7 +49,8 @@ stage('Configure') { // We want to enable preview features when testing early-access builds of OpenJDK: // even if we don't use these features, just enabling them can cause side effects // and it's useful to test that. - new BuildEnvironment( testJdkVersion: '19', testJdkLauncherArgs: '--enable-preview' ) + new BuildEnvironment( testJdkVersion: '19', testJdkLauncherArgs: '--enable-preview' ), + new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ) ]; helper.configure {