Skip to content

Commit

Permalink
Fix up condition
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <sxa@redhat.com>
  • Loading branch information
sxa committed Nov 12, 2024
1 parent 0231ce4 commit e54197b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1983,7 +1983,7 @@ def buildScriptsAssemble(
} finally {
// Archive any artifacts including failed make logs, unless doing internal
// signing where we will perform this step after the assemble phase
if ( ! (enableSigner && (buildConfig.TARGET_OS == 'windows') || (buildConfig.TARGET_OS == 'mac') ) ) {
if (!((buildConfig.TARGET_OS == 'mac' || buildConfig.TARGET_OS == 'windows') && buildConfig.JAVA_TO_BUILD != 'jdk8u' && enableSigner))
try {
context.timeout(time: buildTimeouts.BUILD_ARCHIVE_TIMEOUT, unit: 'HOURS') {
// We have already archived cross compiled artifacts, so only archive the metadata files
Expand Down

0 comments on commit e54197b

Please sign in to comment.