Skip to content

Commit

Permalink
Remove s390x for jdk22
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Apr 26, 2024
1 parent 4f0ed9b commit 1e40919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ def jenkinsStepDeb() {
if ("${VERSION}" == '21' && "${ARCH}" == 'all' ) {
debArchAllList = ['x86_64', 'aarch64', 'ppc64le', 's390x', 'riscv64']
}
// remove Arm32 & add riscv64 for JDK21
// remove Arm32 & add riscv64 for JDK22
if ("${VERSION}" == '22' && "${ARCH}" == 'all') {
debArchAllList = ['x86_64', 'aarch64', 'ppc64le', 's390x', 'riscv64']
debArchAllList = ['x86_64', 'aarch64', 'ppc64le', 'riscv64']
}

debArchAllList.each { DebARCH ->
Expand Down

0 comments on commit 1e40919

Please sign in to comment.