Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions native-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ tasks.register('stagePythonNativeLib', Copy) {
dependsOn tasks.named('stripNativeLibrary')
from("${layout.buildDirectory.get().asFile}/native/nativeCompile") {
include('dwlib.*')
// Exclude GraalVM's separate debug-info file (e.g. dwlib.so.debug on Linux):
// it's dev-only crash-symbolication data the runtime never loads, and would
// otherwise bloat the distributed wheel. Kept in the build dir for debugging.
exclude('*.debug')
}
into("${projectDir}/python/src/dataweave/native")
}
Expand Down Expand Up @@ -160,6 +164,10 @@ tasks.register('stageNodeNativeLib', Copy) {
dependsOn tasks.named('stripNativeLibrary')
from("${layout.buildDirectory.get().asFile}/native/nativeCompile") {
include('dwlib.*')
// Exclude GraalVM's separate debug-info file (e.g. dwlib.so.debug on Linux):
// it's dev-only crash-symbolication data the runtime never loads, and would
// otherwise bloat the packed .tgz. Kept in the build dir for debugging.
exclude('*.debug')
}
into("${projectDir}/node/native")
}
Expand Down
Loading