Skip to content

Commit

Permalink
Prevent jdk11+ from running external sign.sh as already signed during…
Browse files Browse the repository at this point in the history
… build

Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Dec 6, 2024
1 parent ccc2ce7 commit 7aeeedd
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 @@ -753,7 +753,7 @@ class Build {
def sign(VersionInfo versionInfo) {
// Sign and archive jobs if needed
if (
(buildConfig.TARGET_OS == 'windows' || (buildConfig.TARGET_OS == 'mac') && buildConfig.JAVA_TO_BUILD == 'jdk8u')
(buildConfig.TARGET_OS == 'windows' || buildConfig.TARGET_OS == 'mac') && buildConfig.JAVA_TO_BUILD == 'jdk8u')
) {
context.stage('sign zip/tgz') {
def filter = ''
Expand Down

0 comments on commit 7aeeedd

Please sign in to comment.