Skip to content

Commit

Permalink
Test against JDK 20 (early access)
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Jul 11, 2022
1 parent 591eada commit 423f4ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Expand Up @@ -49,7 +49,8 @@ stage('Configure') {
// 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
// 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 {
Expand Down

0 comments on commit 423f4ae

Please sign in to comment.