Skip to content

Commit

Permalink
Move reproduce_compare job to the end of the build job (#809)
Browse files Browse the repository at this point in the history
Ensure the build jdk artifacts available for upstream pipeline to copy

Signed-off-by: Sophia Guo <[email protected]>
  • Loading branch information
sophia-guo authored Sep 10, 2023
1 parent f1290cc commit 5dbde66
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1951,10 +1951,6 @@ class Build {
}
}

// Compare reproducible build if needed
if (enableReproducibleCompare) {
compareReproducibleBuild(nonDockerNodeName)
}
// Run Smoke Tests and AQA Tests
if (enableTests) {
try {
Expand Down Expand Up @@ -2007,6 +2003,11 @@ class Build {
}
}

// Compare reproducible build if needed
if (enableReproducibleCompare) {
compareReproducibleBuild(nonDockerNodeName)
}

// Generic catch all. Will usually be the last message in the log.
} catch (Exception e) {
currentBuild.result = 'FAILURE'
Expand Down

0 comments on commit 5dbde66

Please sign in to comment.