Test against JDK 20 (early access)
This commit is contained in:
parent
591eada30d
commit
423f4aeda3
|
@ -49,7 +49,8 @@ stage('Configure') {
|
||||||
// We want to enable preview features when testing early-access builds of OpenJDK:
|
// We want to enable preview features when testing early-access builds of OpenJDK:
|
||||||
// even if we don't use these features, just enabling them can cause side effects
|
// even if we don't use these features, just enabling them can cause side effects
|
||||||
// and it's useful to test that.
|
// and it's useful to test that.
|
||||||
new BuildEnvironment( testJdkVersion: '19', testJdkLauncherArgs: '--enable-preview' )
|
new BuildEnvironment( testJdkVersion: '19', testJdkLauncherArgs: '--enable-preview' ),
|
||||||
|
new BuildEnvironment( testJdkVersion: '20', testJdkLauncherArgs: '--enable-preview' )
|
||||||
];
|
];
|
||||||
|
|
||||||
helper.configure {
|
helper.configure {
|
||||||
|
|
Loading…
Reference in New Issue