diff --git a/Jenkinsfile b/Jenkinsfile index e43e8e8..08d69c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,11 +54,11 @@ def upstreamProjects = [ * Defaults to '17' * * * * buildJdks The array of JDK versions that will build. * - * Defaults to ['11', '17', '19'] * + * Defaults to ['11', '17', '20'] * * Changes must be copied to matrix axes! * * * * testJdks The array of JDK versions that will test against every build JDK. * - * Defaults to ['11', '17', '19'] * + * Defaults to ['11', '17', '20'] * * Changes must be copied to matrix axes! * * * * upstreamProjects The array of relative paths to upstream projects. * @@ -153,13 +153,13 @@ if (!binding.hasVariable('deployJdk')) { if (!binding.hasVariable('buildJdks')) { binding.setVariable( 'buildJdks', - ['11', '17', '19'] // Changes must be copied to matrix axes! + ['11', '17', '20'] // Changes must be copied to matrix axes! ) } if (!binding.hasVariable('testJdks')) { binding.setVariable( 'testJdks', - ['11', '17', '19'] // Changes must be copied to matrix axes! + ['11', '17', '20'] // Changes must be copied to matrix axes! ) } if (!binding.hasVariable('upstreamProjects')) { @@ -767,7 +767,7 @@ pipeline { axes { axis { name 'jdk' - values '11', '17', '19' // buildJdks + values '11', '17', '20' // buildJdks } } stages { @@ -813,11 +813,11 @@ pipeline { axes { axis { name 'jdk' - values '11', '17', '19' // buildJdks + values '11', '17', '20' // buildJdks } axis { name 'testJdk' - values '11', '17', '19' // testJdks + values '11', '17', '20' // testJdks } } stages { diff --git a/book/Jenkinsfile b/book/Jenkinsfile index 0edbaf7..e3ff473 100644 --- a/book/Jenkinsfile +++ b/book/Jenkinsfile @@ -62,11 +62,11 @@ def upstreamProjects = [ * Defaults to '17' * * * * buildJdks The array of JDK versions that will build. * - * Defaults to ['11', '17', '19'] * + * Defaults to ['11', '17', '20'] * * Changes must be copied to matrix axes! * * * * testJdks The array of JDK versions that will test against every build JDK. * - * Defaults to ['11', '17', '19'] * + * Defaults to ['11', '17', '20'] * * Changes must be copied to matrix axes! * * * * upstreamProjects The array of relative paths to upstream projects. * @@ -161,13 +161,13 @@ if (!binding.hasVariable('deployJdk')) { if (!binding.hasVariable('buildJdks')) { binding.setVariable( 'buildJdks', - ['11', '17', '19'] // Changes must be copied to matrix axes! + ['11', '17', '20'] // Changes must be copied to matrix axes! ) } if (!binding.hasVariable('testJdks')) { binding.setVariable( 'testJdks', - ['11', '17', '19'] // Changes must be copied to matrix axes! + ['11', '17', '20'] // Changes must be copied to matrix axes! ) } if (!binding.hasVariable('upstreamProjects')) { @@ -775,7 +775,7 @@ pipeline { axes { axis { name 'jdk' - values '11', '17', '19' // buildJdks + values '11', '17', '20' // buildJdks } } stages { @@ -821,11 +821,11 @@ pipeline { axes { axis { name 'jdk' - values '11', '17', '19' // buildJdks + values '11', '17', '20' // buildJdks } axis { name 'testJdk' - values '11', '17', '19' // testJdks + values '11', '17', '20' // testJdks } } stages {