You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/08/22 15:01:33 UTC

[geode] 01/02: GEODE-5615: Capturing hprof files in build archive

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

upthewaterspout pushed a commit to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 29cc28037c623609524fe8066616c3da0a2e5cf1
Author: Dan Smith <up...@apache.org>
AuthorDate: Tue Aug 21 15:37:59 2018 -0700

    GEODE-5615: Capturing hprof files in build archive
    
    To help us track down builds that fail with OutOfMemory errors, capture
    any hprof files found.
---
 ci/scripts/archive_results.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/scripts/archive_results.sh b/ci/scripts/archive_results.sh
index bce4fcd..29fe455 100755
--- a/ci/scripts/archive_results.sh
+++ b/ci/scripts/archive_results.sh
@@ -101,6 +101,7 @@ pushd ${GEODE_BUILD}
   find . -type d -name "test-results" >> ${directories_file}
   (find . -type d -name "*Test" | grep "build/[^/]*Test$") >> ${directories_file}
   find . -name "*-progress*txt" >> ${directories_file}
+  find . -name '*.hprof" >> ${directories_file}
   find . -type d -name "callstacks" >> ${directories_file}
   echo "Collecting the following artifacts..."
   cat ${directories_file}