Skip to content

Commit bbaa9b8

Browse files
committed
Add more debug steps
Signed-off-by: Carlos Ferreira González <carlosferreira@eprosima.com>
1 parent 78a298e commit bbaa9b8

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/reusable-sanitizers-ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,15 @@ jobs:
441441
echo "Per-process report files : $nfiles"
442442
echo "Reports captured in files: $in_files"
443443
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+
echo ""
452+
done
444453
445454
- name: Check on failures
446455
if: ${{ steps.report_summary.outcome == 'failure' }}

0 commit comments

Comments
 (0)