Add JDK 24-ea testing

This commit is contained in:
Christian Beikov 2024-06-10 23:19:45 +02:00
parent df940d392f
commit 00977fe9a9
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -55,7 +55,8 @@ stage('Configure') {
// they require the use of -Dnet.bytebuddy.experimental=true.
// Make sure to remove that argument as soon as possible
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' ),
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
];
if ( env.CHANGE_ID ) {