Skip to content

Commit

Permalink
Replaced JDK 19 with JDK 20 in Jenkins build matrices.
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Jul 11, 2023
1 parent 4aeb2fa commit 9fb3bc4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile
Expand Up @@ -57,11 +57,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. *
Expand Down Expand Up @@ -156,13 +156,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')) {
Expand Down Expand Up @@ -770,7 +770,7 @@ pipeline {
axes {
axis {
name 'jdk'
values '11', '17', '19' // buildJdks
values '11', '17', '20' // buildJdks
}
}
stages {
Expand Down Expand Up @@ -816,11 +816,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 {
Expand Down
14 changes: 7 additions & 7 deletions book/Jenkinsfile
Expand Up @@ -58,11 +58,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. *
Expand Down Expand Up @@ -157,13 +157,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')) {
Expand Down Expand Up @@ -771,7 +771,7 @@ pipeline {
axes {
axis {
name 'jdk'
values '11', '17', '19' // buildJdks
values '11', '17', '20' // buildJdks
}
}
stages {
Expand Down Expand Up @@ -817,11 +817,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 {
Expand Down

0 comments on commit 9fb3bc4

Please sign in to comment.