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 5c898c1 commit a7b96f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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. *
Expand Down Expand Up @@ -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')) {
Expand Down Expand Up @@ -767,7 +767,7 @@ pipeline {
axes {
axis {
name 'jdk'
values '11', '17', '19' // buildJdks
values '11', '17', '20' // buildJdks
}
}
stages {
Expand Down Expand Up @@ -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 {
Expand Down
14 changes: 7 additions & 7 deletions book/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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. *
Expand Down Expand Up @@ -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')) {
Expand Down Expand Up @@ -775,7 +775,7 @@ pipeline {
axes {
axis {
name 'jdk'
values '11', '17', '19' // buildJdks
values '11', '17', '20' // buildJdks
}
}
stages {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit a7b96f1

Please sign in to comment.