Test against JDK 20 (early access)

This commit is contained in:
Yoann Rodière 2022-07-11 10:51:04 +02:00
parent 591eada30d
commit 423f4aeda3
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -49,7 +49,8 @@ stage('Configure') {
// We want to enable preview features when testing early-access builds of OpenJDK: // 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 // even if we don't use these features, just enabling them can cause side effects
// and it's useful to test that. // 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 { helper.configure {