Skip to content

Commit 5122cf0

Browse files
committed
Test against OpenJDK 26
1 parent ae6a9e6 commit 5122cf0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ stage('Configure') {
4848
// and it's useful to test that.
4949
new BuildEnvironment( testJdkVersion: '23', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' ),
5050
new BuildEnvironment( testJdkVersion: '24', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' ),
51-
new BuildEnvironment( testJdkVersion: '25', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' )
51+
new BuildEnvironment( testJdkVersion: '25', testJdkLauncherArgs: '--enable-preview', additionalOptions: '-PskipJacoco=true' ),
5252
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
5353
// they require the use of -Dnet.bytebuddy.experimental=true.
5454
// Make sure to remove that argument as soon as possible
5555
// -- generally that requires upgrading bytebuddy after the JDK goes GA.
56+
new BuildEnvironment( testJdkVersion: '26', testJdkLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', additionalOptions: '-PskipJacoco=true' )
5657
];
5758

5859
if ( env.CHANGE_ID ) {

0 commit comments

Comments
 (0)