Skip to content

Commit

Permalink
Disable internal sign phase on jdk8u
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <[email protected]>
  • Loading branch information
sxa committed Oct 12, 2024
1 parent 7c5abfd commit 4f6709b
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 @@ -2304,7 +2304,8 @@ def buildScriptsAssemble(
)
}
}
if ( enableSigner ) {
// Is thre potential for not enabling the signer on jdk8u instead of having this clause?
if ( enableSigner && buildConfig.JAVA_TO_BUILD != 'jdk8u' ) {
context.println "openjdk_build_pipeline: running eclipse signing phase"
buildScriptsEclipseSigner()
def workspace = 'C:/workspace/openjdk-build/'
Expand Down

0 comments on commit 4f6709b

Please sign in to comment.