Test against JDK 21 EA

This commit is contained in:
Yoann Rodière 2023-01-18 10:07:53 +01:00
parent 67dc1ed835
commit eefe445ac9
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -49,7 +49,8 @@ stage('Configure') {
// 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: '20', testJdkLauncherArgs: '--enable-preview' )
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' ),
new BuildEnvironment( testJdkVersion: '21', testJdkLauncherArgs: '--enable-preview' )
];
if ( env.CHANGE_ID ) {