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 9a76577 commit 2832f7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,8 @@ 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 2832f7e

Please sign in to comment.