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 2022/02/20 18:31:37 UTC

[geode] branch develop updated: GEODE-10072: Restore japicmp report (#7383)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new e191407  GEODE-10072: Restore japicmp report (#7383)
e191407 is described below

commit e191407d9a1fcf1b0332bb81388c0e70f282085a
Author: Owen Nichols <34...@users.noreply.github.com>
AuthorDate: Sun Feb 20 10:29:42 2022 -0800

    GEODE-10072: Restore japicmp report (#7383)
    
    Before, this was always generated in geode-assembly.
    Now on some branches it is in geode-server-all.
    Solution: wildcard the top-level module name to always find it.
---
 ci/scripts/archive_results.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/archive_results.sh b/ci/scripts/archive_results.sh
index 81dc3e2..d913b63 100755
--- a/ci/scripts/archive_results.sh
+++ b/ci/scripts/archive_results.sh
@@ -125,7 +125,7 @@ pushd ${GEODE_BUILD}/build/reports/combined
   gsutil -q -m cp -r * gs://${TEST_RESULTS_DESTINATION}
 popd
 
-API_CHECK_REPORT=$(ls ${GEODE_BUILD}/geode-assembly/build/reports/rich-report-japi*.html)
+API_CHECK_REPORT=$(ls ${GEODE_BUILD}/geode-*/build/reports/rich-report-japi*.html)
 if [ -n "${API_CHECK_REPORT}" ]; then
   gsutil -q cp ${API_CHECK_REPORT} gs://${TEST_RESULTS_DESTINATION}api_check_report.html
 fi