CI: musl: highlight section if there are coredumps
previously, section was collapsed, thus it was harder to find that there's something to look at
This commit is contained in:
parent
4a18d9e560
commit
8382d71808
|
@ -40,12 +40,17 @@ jobs:
|
|||
- name: Show coredumps
|
||||
if: ${{ failure() && steps.vtest.outcome == 'failure' }}
|
||||
run: |
|
||||
failed=false
|
||||
ls /tmp/core/
|
||||
for file in /tmp/core/core.*; do
|
||||
failed=true
|
||||
printf "::group::"
|
||||
gdb -ex 'thread apply all bt full' ./haproxy $file
|
||||
echo "::endgroup::"
|
||||
done
|
||||
if [ "$failed" = true ]; then
|
||||
exit 1;
|
||||
fi
|
||||
- name: Show results
|
||||
if: ${{ failure() }}
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue