Skip to content

Commit

Permalink
Merge pull request #9223 from camunda/9129-archive-jvm-dumps
Browse files Browse the repository at this point in the history
Archive JVM error dumps on failure
  • Loading branch information
npepinpe committed Apr 25, 2022
2 parents bcc0509 + fc31091 commit b0d7781
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
if: failure()
with:
name: Integration test results
path: "**/target/failsafe-reports/"
path: |
**/target/failsafe-reports/
**/hs_err_*.log
retention-days: 7
exporter-tests:
name: Exporter tests
Expand All @@ -67,7 +69,9 @@ jobs:
if: failure()
with:
name: Exporter test results
path: "**/target/failsafe-reports/"
path: |
**/target/failsafe-reports/
**/hs_err_*.log
retention-days: 7
project-list:
# Builds a list of projects where unit tests can be run on hosted runners
Expand Down Expand Up @@ -118,7 +122,9 @@ jobs:
if: failure()
with:
name: Unit test results for ${{ matrix.project }}
path: "**/target/surefire-reports/"
path: |
**/target/surefire-reports/
**/hs_err_*.log
retention-days: 7
slow-unit-tests:
name: Slow unit tests
Expand Down Expand Up @@ -148,7 +154,9 @@ jobs:
if: failure()
with:
name: Slow unit test results
path: "**/target/surefire-reports/"
path: |
**/target/surefire-reports/
**/hs_err_*.log
retention-days: 7
smoke-tests:
# This name is hard-referenced from bors.toml
Expand Down Expand Up @@ -188,7 +196,9 @@ jobs:
if: failure()
with:
name: Smoke test results for ${{ matrix.os }}
path: "**/target/failsafe-reports/"
path: |
**/target/surefire-reports/
**/hs_err_*.log
retention-days: 7
go-client:
name: Go client tests
Expand Down

0 comments on commit b0d7781

Please sign in to comment.