previously, section was collapsed, thus it was harder to find that
there's something to look at
---
 .github/workflows/musl.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/musl.yml b/.github/workflows/musl.yml
index 4017affb9..af358981f 100644
--- a/.github/workflows/musl.yml
+++ b/.github/workflows/musl.yml
@@ -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: |
-- 
2.41.0


Reply via email to