Stop testing against JDK 19

This commit is contained in:
Yoann Rodière 2023-06-13 12:05:18 +02:00
parent 97a10e772d
commit ac6ee6788b
1 changed files with 0 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -47,7 +47,6 @@ stage('Configure') {
// We want to enable preview features when testing newer builds of OpenJDK:
// 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: '21', testJdkLauncherArgs: '--enable-preview' ),
new BuildEnvironment( testJdkVersion: '22', testJdkLauncherArgs: '--enable-preview' )