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 <[email protected]> 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}
