Skip to content

Commit 307b30d

Browse files
committed
Add JDK 25-ea testing
1 parent 82407be commit 307b30d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ stage('Configure') {
3636
// even if we don't use these features, just enabling them can cause side effects
3737
// and it's useful to test that.
3838
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview' ),
39-
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview' ),
4039
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
4140
// they require the use of -Dnet.bytebuddy.experimental=true.
4241
// Make sure to remove that argument as soon as possible
4342
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
44-
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
43+
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' ),
44+
new BuildEnvironment( testJdkVersion: '25', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true' )
4545
];
4646

4747
helper.configure {

0 commit comments

Comments
 (0)