Skip to content

Commit

Permalink
Go back to stashing all, but exclude file types with problematic perm…
Browse files Browse the repository at this point in the history
…issions (#1139)

Signed-off-by: Stewart X Addison <sxa@redhat.com>
  • Loading branch information
sxa authored Nov 12, 2024
1 parent afe0c07 commit b6ea304
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1900,17 +1900,12 @@ def buildScriptsAssemble(
}
context.println "base_path for jmod signing = ${base_path}."
context.stash name: 'jmods',
includes: "${base_path}/hotspot/variant-server/**/*.exe," +
"${base_path}/hotspot/variant-server/**/*.dll," +
"${base_path}/hotspot/variant-server/**/*.dylib," +
"${base_path}/support/modules_cmds/**/*.exe," +
"${base_path}/support/modules_cmds/**/*.dll," +
"${base_path}/support/modules_cmds/**/*.dylib," +
"${base_path}/support/modules_libs/**/*.exe," +
"${base_path}/support/modules_libs/**/*.dll," +
"${base_path}/support/modules_libs/**/*.dylib," +
// JDK 16 + jpackage needs to be signed as well stash the resources folder containing the executables
"${base_path}/jdk/modules/jdk.jpackage/jdk/jpackage/internal/resources/*"
includes: "${base_path}/hotspot/variant-server/**/*," +
"${base_path}/support/modules_cmds/**/*," +
"${base_path}/support/modules_libs/**/*," +
// JDK 16 + jpackage needs to be signed as well stash the resources folder containing the executables
"${base_path}/jdk/modules/jdk.jpackage/jdk/jpackage/internal/resources/*",
excludes: "**/*.dat,**/*bfc"

// eclipse-codesign and assemble sections were inlined here before
// https://github.com/adoptium/ci-jenkins-pipelines/pull/1117
Expand Down

0 comments on commit b6ea304

Please sign in to comment.