Skip to content

Commit cf68ad3

Browse files
committed
Stop testing on EOLed JDKs
1 parent b9657e2 commit cf68ad3

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Jenkinsfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,19 +181,13 @@ stage('Configure') {
181181
// We want to enable preview features when testing newer builds of OpenJDK:
182182
// even if we don't use these features, just enabling them can cause side effects
183183
// and it's useful to test that.
184-
new JdkBuildEnvironment(version: '22', testCompilerTool: 'OpenJDK 22 Latest',
185-
testLauncherArgs: '--enable-preview',
186-
condition: TestCondition.AFTER_MERGE),
187184
// The following JDKs aren't supported by Hibernate ORM out-of-the box yet:
188185
// they require the use of -Dnet.bytebuddy.experimental=true.
189186
// Make sure to remove that argument as soon as possible
190187
// -- generally that requires upgrading bytebuddy in Hibernate ORM after the JDK goes GA.
191188
new JdkBuildEnvironment(version: '23', testCompilerTool: 'OpenJDK 23 Latest',
192189
testLauncherArgs: '--enable-preview',
193190
condition: TestCondition.AFTER_MERGE),
194-
new JdkBuildEnvironment(version: '24', testCompilerTool: 'OpenJDK 24 Latest',
195-
testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true',
196-
condition: TestCondition.AFTER_MERGE),
197191
new JdkBuildEnvironment(version: '25', testCompilerTool: 'OpenJDK 25 Latest',
198192
testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true',
199193
condition: TestCondition.AFTER_MERGE)

0 commit comments

Comments
 (0)