Collect more crash dump files (#5327)
This commit is contained in:
parent
53359f09ea
commit
696bbaa8d9
|
@ -36,12 +36,17 @@ jobs:
|
||||||
path: /tmp/deadlock-detector-*
|
path: /tmp/deadlock-detector-*
|
||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
|
|
||||||
- name: Upload OpenJ9 javacore files if any
|
- name: Upload jvm crash dump files if any
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: javacore-build
|
name: javacore-build
|
||||||
path: "**/javacore.*.txt"
|
path: |
|
||||||
|
"**/hs_err_pid*.log"
|
||||||
|
"**/javacore.*.txt"
|
||||||
|
"**/Snap.*.trc"
|
||||||
|
"**/core.*.dmp"
|
||||||
|
"**/jitdump.*.dmp"
|
||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
|
|
||||||
build-gradle-plugins:
|
build-gradle-plugins:
|
||||||
|
@ -107,12 +112,17 @@ jobs:
|
||||||
path: /tmp/deadlock-detector-*
|
path: /tmp/deadlock-detector-*
|
||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
|
|
||||||
- name: Upload OpenJ9 javacore files if any
|
- name: Upload jvm crash dump files if any
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: javacore-test-${{ matrix.test-java-version }}
|
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
|
if-no-files-found: ignore
|
||||||
|
|
||||||
testLatestDeps:
|
testLatestDeps:
|
||||||
|
|
Loading…
Reference in New Issue