Skip to content

Commit 9475014

Browse files
authored
Disable test and installer jobs (#733)
Fix copyArtifacts only copy the latest successful one. Signed-off-by: Sophia Guo <[email protected]>
1 parent 4d41ab6 commit 9475014

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/reproduce_comparison/Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pipeline {
2121
fingerprintArtifacts: true,
2222
flatten: true,
2323
projectName: "${params.COMPARED_JOB_NAME}",
24-
target: 'original/'
24+
target: 'original/',
2525
selector: specific("${params.COMPARED_JOB_NUMBER}")
2626
script {
2727
def sbomFiles = findFiles(glob: "**/OpenJDK*-sbom*.json")
@@ -60,6 +60,8 @@ pipeline {
6060
jsonJobParams.BUILD_CONFIGURATION.BUILD_REF = buildRef
6161
jsonJobParams.BUILD_CONFIGURATION.BUILD_ARGS += " --build-reproducible-date ${buildTimeStamp}"
6262
jsonJobParams.BUILD_CONFIGURATION.ENABLE_REPRODUCIBLE_COMPARE = false
63+
jsonJobParams.BUILD_CONFIGURATION.ENABLE_TESTS = false
64+
jsonJobParams.BUILD_CONFIGURATION.ENABLE_INSTALLERS = false
6365

6466
def buildParams = [
6567
text(name: 'BUILD_CONFIGURATION', value: JsonOutput.prettyPrint(JsonOutput.toJson(jsonJobParams.BUILD_CONFIGURATION))),

0 commit comments

Comments
 (0)