You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2021/02/02 18:31:51 UTC

[geode] branch support/1.12 updated: GEODE-8906: capture additional crash artifacts (#5991)

This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
     new 87fa793  GEODE-8906: capture additional crash artifacts (#5991)
87fa793 is described below

commit 87fa793bbe438860700676da9832934a2a42e14c
Author: Owen Nichols <34...@users.noreply.github.com>
AuthorDate: Tue Feb 2 10:28:23 2021 -0800

    GEODE-8906: capture additional crash artifacts (#5991)
    
    (cherry picked from commit 2a934b506364dbe16c10bce384740308947a096b)
---
 ci/scripts/shared_utilities.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/shared_utilities.sh b/ci/scripts/shared_utilities.sh
index 60eda7a..090401f 100644
--- a/ci/scripts/shared_utilities.sh
+++ b/ci/scripts/shared_utilities.sh
@@ -23,7 +23,7 @@ find-here-test-reports() {
   find .  -type d -name "test-results" >> ${output_directories_file}
   (find . -type d -name "*Test" | grep "build/[^/]*Test$") >> ${output_directories_file}
   find . -name "*-progress*txt" >> ${output_directories_file}
-  find . -name "*.hprof" >> ${output_directories_file}
+  find . -name "*.hprof" -o -name "hs_err*.log" -o -name "hreplay*.log" >> ${output_directories_file}
   find . -type d -name "callstacks" >> ${output_directories_file}
   echo "Collecting the following artifacts..."
   cat ${output_directories_file}