-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update jdk23 and add jdk24 pipeline configurations (#1047)
* Update jdk23 and add jdk24 pipeline configurations Signed-off-by: Andrew Leonard <[email protected]> * pr-tester failing due to AQAvit tap file archive failure Signed-off-by: Andrew Leonard <[email protected]> * Update jdk23 and add jdk24 pipeline configurations Signed-off-by: Andrew Leonard <[email protected]> --------- Signed-off-by: Andrew Leonard <[email protected]>
- Loading branch information
1 parent
701ada8
commit cca48ca
Showing
8 changed files
with
311 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
targetConfigurations = [ | ||
'riscv64Linux': [ | ||
'temurin' | ||
], | ||
'aarch64Windows' : [ | ||
'temurin' | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
targetConfigurations = [ | ||
'x64Mac' : [ | ||
'temurin' | ||
], | ||
'x64Linux' : [ | ||
'temurin' | ||
], | ||
'x64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'x64Windows' : [ | ||
'temurin' | ||
], | ||
'ppc64Aix' : [ | ||
'temurin' | ||
], | ||
'ppc64leLinux': [ | ||
'temurin' | ||
], | ||
's390xLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64Linux': [ | ||
'temurin' | ||
], | ||
'aarch64Mac': [ | ||
'temurin' | ||
], | ||
'riscv64Linux': [ | ||
'temurin' | ||
] | ||
] | ||
|
||
return this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
targetConfigurations = [ | ||
'x64Mac' : [ | ||
'temurin' | ||
], | ||
'x64Linux' : [ | ||
'temurin' | ||
], | ||
'x64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'x64Windows' : [ | ||
'temurin' | ||
], | ||
'ppc64Aix' : [ | ||
'temurin' | ||
], | ||
'ppc64leLinux': [ | ||
'temurin' | ||
], | ||
's390xLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64Linux': [ | ||
'hotspot', | ||
'temurin' | ||
], | ||
'aarch64Mac': [ | ||
'temurin' | ||
], | ||
'riscv64Linux': [ | ||
'temurin' | ||
] | ||
] | ||
|
||
// scmReferences to use for weekly release build | ||
weekly_release_scmReferences = [ | ||
'hotspot' : '', | ||
'temurin' : '', | ||
'openj9' : '', | ||
'corretto' : '', | ||
'dragonwell' : '' | ||
] | ||
|
||
return this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
targetConfigurations = [ | ||
'aarch64Windows' : [ | ||
'temurin' | ||
] | ||
] | ||
|
||
// scmReferences to use for weekly evaluation release build | ||
weekly_evaluation_scmReferences = [ | ||
'hotspot' : '', | ||
'temurin' : '' | ||
] | ||
|
||
return this |
166 changes: 166 additions & 0 deletions
166
pipelines/jobs/configurations/jdk24_pipeline_config.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
class Config24 { | ||
|
||
final Map<String, Map<String, ?>> buildConfigurations = [ | ||
x64Mac : [ | ||
os : 'mac', | ||
arch : 'x64', | ||
additionalNodeLabels: 'xcode15.0.1', | ||
additionalTestLabels: [ | ||
openj9 : '!sw.os.osx.10_11', | ||
temurin : '!sw.os.osx.10_14' | ||
], | ||
test : 'default', | ||
configureArgs : '--enable-dtrace', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
x64Linux : [ | ||
os : 'linux', | ||
arch : 'x64', | ||
dockerImage : 'adoptopenjdk/centos7_build_image', | ||
dockerFile: [ | ||
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile' | ||
], | ||
test: [ | ||
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional', 'extended.openjdk', 'extended.perf', 'special.functional', 'dev.openjdk', 'dev.functional', 'dev.system', 'special.system'] | ||
], | ||
additionalTestLabels: [ | ||
openj9 : '!(centos6||rhel6)', | ||
temurin : '!(centos6||rhel6)' | ||
], | ||
configureArgs : [ | ||
'openj9' : '--enable-dtrace', | ||
'temurin' : '--enable-dtrace' | ||
], | ||
buildArgs : [ | ||
'temurin' : '--create-source-archive --create-jre-image --create-sbom --use-adoptium-devkit gcc-11.3.0-Centos7.9.2009-b02' | ||
] | ||
], | ||
|
||
x64AlpineLinux : [ | ||
os : 'alpine-linux', | ||
arch : 'x64', | ||
dockerImage : 'adoptopenjdk/alpine3_build_image', | ||
test : 'default', | ||
configureArgs : '--enable-headless-only=yes', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
aarch64AlpineLinux : [ | ||
os : 'alpine-linux', | ||
arch : 'aarch64', | ||
dockerImage : 'adoptopenjdk/alpine3_build_image', | ||
test : 'default', | ||
configureArgs : '--enable-headless-only=yes', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
x64Windows: [ | ||
os : 'windows', | ||
arch : 'x64', | ||
additionalNodeLabels: 'win2022&&vs2022', | ||
test: [ | ||
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional', 'extended.openjdk', 'extended.perf', 'special.functional', 'special.openjdk', 'dev.functional', 'dev.system'] | ||
], | ||
configureArgs : "--with-ucrt-dll-dir='C:/progra~2/wi3cf2~1/10/Redist/10.0.22621.0/ucrt/DLLs/x64'", | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
ppc64Aix : [ | ||
os : 'aix', | ||
arch : 'ppc64', | ||
additionalNodeLabels: [ | ||
temurin: 'openxl17&&aix720', | ||
openj9: 'xlc16&&aix715' | ||
], | ||
test : 'default', | ||
additionalTestLabels: [ | ||
temurin : 'sw.os.aix.7_2TL5' | ||
], | ||
cleanWorkspaceAfterBuild: true, | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
s390xLinux : [ | ||
os : 'linux', | ||
arch : 's390x', | ||
dockerImage : 'rhel7_build_image', | ||
test : 'default', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom --use-adoptium-devkit s390x-on-s390x.RH7' | ||
] | ||
], | ||
|
||
ppc64leLinux : [ | ||
os : 'linux', | ||
arch : 'ppc64le', | ||
dockerImage : 'adoptopenjdk/centos7_build_image', | ||
test : 'default', | ||
configureArgs : [ | ||
'openj9' : '--enable-dtrace' | ||
], | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom --use-adoptium-devkit gcc-11.3.0-Centos7.9.2009-b02' | ||
] | ||
], | ||
|
||
aarch64Linux : [ | ||
os : 'linux', | ||
arch : 'aarch64', | ||
dockerImage : 'adoptopenjdk/centos7_build_image', | ||
test : 'default', | ||
configureArgs : '--enable-dtrace', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom --use-adoptium-devkit gcc-11.3.0-Centos7.6.1810-b02' | ||
] | ||
], | ||
|
||
aarch64Mac: [ | ||
os : 'mac', | ||
arch : 'aarch64', | ||
additionalNodeLabels: 'xcode15.0.1', | ||
test : 'default', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
riscv64Linux : [ | ||
os : 'linux', | ||
arch : 'riscv64', | ||
crossCompile : 'qemustatic', | ||
dockerImage : 'adoptopenjdk/ubuntu2004_build_image:linux-riscv64', | ||
dockerArgs : '--platform linux/riscv64', | ||
test : 'default', | ||
configureArgs : '--enable-headless-only=yes --enable-dtrace', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom' | ||
] | ||
], | ||
|
||
aarch64Windows: [ | ||
os : 'windows', | ||
arch : 'aarch64', | ||
crossCompile : 'x64', | ||
additionalNodeLabels: 'win2022&&vs2022', | ||
test : 'default', | ||
buildArgs : [ | ||
'temurin' : '--create-jre-image --create-sbom --cross-compile' | ||
] | ||
] | ||
] | ||
|
||
} | ||
|
||
Config24 config = new Config24() | ||
return config.buildConfigurations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
targetConfigurations = [ | ||
'x64Mac' : [ | ||
'temurin' | ||
], | ||
'x64Linux' : [ | ||
'temurin' | ||
], | ||
'x64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64AlpineLinux' : [ | ||
'temurin' | ||
], | ||
'x64Windows' : [ | ||
'temurin' | ||
], | ||
'ppc64Aix' : [ | ||
'temurin' | ||
], | ||
'ppc64leLinux': [ | ||
'temurin' | ||
], | ||
's390xLinux' : [ | ||
'temurin' | ||
], | ||
'aarch64Linux': [ | ||
'temurin' | ||
], | ||
'aarch64Mac': [ | ||
'temurin' | ||
], | ||
'riscv64Linux': [ | ||
'temurin' | ||
] | ||
] | ||
|
||
return this |