Skip to content

Commit

Permalink
Fixed skupperproject#129: Configure coredumping in GHA and print and …
Browse files Browse the repository at this point in the history
…archive backtraces
  • Loading branch information
jiridanek committed Mar 10, 2022
1 parent 32e48c6 commit b7e8835
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@ jobs:
run: |
find -name 'coredump*' -exec ${{github.workspace}}/skupper-router/scripts/gha_analyze_coredump.sh {} \;
- name: Report coredump stacktraces (if any tests failed)
if: ${{ failure() }}
run: |
find -name 'coredump*' -exec ${{github.workspace}}/skupper-router/scripts/gha_analyze_coredump.sh {} \;
- name: Upload test results
uses: actions/upload-artifact@v2
if: ${{ ! cancelled() }}
Expand Down Expand Up @@ -462,6 +467,11 @@ jobs:
run: |
find -name 'coredump*' -exec ${{github.workspace}}/skupper-router/scripts/gha_analyze_coredump.sh {} \;
- name: Report coredump stacktraces (if any tests failed)
if: ${{ failure() }}
run: |
find -name 'coredump*' -exec ${{github.workspace}}/skupper-router/scripts/gha_analyze_coredump.sh {} \;
- name: Upload test results
uses: actions/upload-artifact@v2
if: ${{ ! cancelled() }}
Expand Down

0 comments on commit b7e8835

Please sign in to comment.