Collect more crash dump files (#5327)

This commit is contained in:
Lauri Tulmin 2022-02-16 13:30:23 +02:00 committed by GitHub
parent 53359f09ea
commit 696bbaa8d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 4 deletions

View File

@ -36,12 +36,17 @@ jobs:
path: /tmp/deadlock-detector-*
if-no-files-found: ignore
- name: Upload OpenJ9 javacore files if any
- name: Upload jvm crash dump files if any
if: always()
uses: actions/upload-artifact@v2
with:
name: javacore-build
path: "**/javacore.*.txt"
path: |
"**/hs_err_pid*.log"
"**/javacore.*.txt"
"**/Snap.*.trc"
"**/core.*.dmp"
"**/jitdump.*.dmp"
if-no-files-found: ignore
build-gradle-plugins:
@ -107,12 +112,17 @@ jobs:
path: /tmp/deadlock-detector-*
if-no-files-found: ignore
- name: Upload OpenJ9 javacore files if any
- name: Upload jvm crash dump files if any
if: always()
uses: actions/upload-artifact@v2
with:
name: javacore-test-${{ matrix.test-java-version }}
path: "**/javacore.*.txt"
path: |
"**/hs_err_pid*.log"
"**/javacore.*.txt"
"**/Snap.*.trc"
"**/core.*.dmp"
"**/jitdump.*.dmp"
if-no-files-found: ignore
testLatestDeps: