From 009dcdb07815c1eb745b9813d5c4de4a50fa01a1 Mon Sep 17 00:00:00 2001 From: "Keith W. Campbell" Date: Mon, 25 Sep 2023 15:52:59 -0400 Subject: [PATCH] Collect debuginfo files to help diagnose omr_ddrgen failures on linux Signed-off-by: Keith W. Campbell --- buildenv/jenkins/common/build.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildenv/jenkins/common/build.groovy b/buildenv/jenkins/common/build.groovy index ebb35e3d1e3..f03b1f7305a 100644 --- a/buildenv/jenkins/common/build.groovy +++ b/buildenv/jenkins/common/build.groovy @@ -528,7 +528,10 @@ def archive_diagnostics(javaVersionJdkImageDir = null) { findCrashDataCmd += " -o -name 'jitdump.*.dmp'" findCrashDataCmd += " -o -name 'Snap.*.trc'" - if (SPEC.contains('win')) { + if (SPEC.contains('linux')) { + // collect *.debuginfo files to help diagnose omr_ddrgen failures + findCrashDataCmd += " -o -name '*.debuginfo'" + } else if (SPEC.contains('win')) { // collect *.pdb files to help diagnose omr_ddrgen failures findCrashDataCmd += " -o -name '*.pdb'" } else if (SPEC.contains('zos')) {