From fac5eced2835b2a0bb286876bd11d747413b608e Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Mon, 6 Jan 2025 11:25:49 +0000 Subject: [PATCH] Ensure post build clean occurs for non-mac&win platforms Signed-off-by: Andrew Leonard --- pipelines/build/common/openjdk_build_pipeline.groovy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 76caede27..8432dd0cd 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -2064,10 +2064,7 @@ def buildScriptsAssemble( } throw new Exception("[ERROR] Build archive timeout (${buildTimeouts.BUILD_ARCHIVE_TIMEOUT} HOURS) has been reached. Exiting...") } - // With the exclusion above this is no longer strictly required - if ( !enableSigner ) { // Don't clean if we need the workspace for the later assemble phase - postBuildWSclean(cleanWorkspaceAfter, cleanWorkspaceBuildOutputAfter) - } + postBuildWSclean(cleanWorkspaceAfter, cleanWorkspaceBuildOutputAfter) // Set Github Commit Status if (env.JOB_NAME.contains('pr-tester')) { updateGithubCommitStatus('SUCCESS', 'Build PASSED')