Skip to content

Commit

Permalink
Merge pull request #18194 from keithc-ca/gcc11
Browse files Browse the repository at this point in the history
Collect debuginfo files to help diagnose omr_ddrgen failures with gcc11
  • Loading branch information
pshipton authored Sep 25, 2023
2 parents 6484680 + 009dcdb commit 252a6dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildenv/jenkins/common/build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand Down

0 comments on commit 252a6dd

Please sign in to comment.