We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a298e commit bbaa9b8Copy full SHA for bbaa9b8
1 file changed
.github/workflows/reusable-sanitizers-ci.yml
@@ -441,6 +441,15 @@ jobs:
441
echo "Per-process report files : $nfiles"
442
echo "Reports captured in files: $in_files"
443
echo "Reports left in stdout : $in_stdout (expected ~0; anything >0 = a process missed the option)"
444
+ echo ""
445
+ echo "## TSan report files dump"
446
+ for f in ${{ github.workspace }}/tsan_reports/*; do
447
+ [ -e "$f" ] || { echo "(no report files found)"; break; }
448
+ echo "===== BEGIN $f ====="
449
+ cat "$f"
450
+ echo "===== END $f ====="
451
452
+ done
453
454
- name: Check on failures
455
if: ${{ steps.report_summary.outcome == 'failure' }}
0 commit comments