From bba3f62fab4093497675d2106ab9a3988cd42d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Ga=C5=82at?= Date: Tue, 11 Jun 2024 12:31:21 +0000 Subject: [PATCH] GHA: print combined twister reports before compare MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit show the resulted twister.json after combining and before comparing for size report. Signed-off-by: Robert Gałat --- .github/workflows/on-pr_publish_comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/on-pr_publish_comment.yml b/.github/workflows/on-pr_publish_comment.yml index aee73afd94..b45075f560 100644 --- a/.github/workflows/on-pr_publish_comment.yml +++ b/.github/workflows/on-pr_publish_comment.yml @@ -50,9 +50,11 @@ jobs: shopt -s extglob pr_reports=$(ls current/sample-artifacts-meta/subsets/*/twister.json) python3 scripts/ci/combine_twister_reports.py $pr_reports new.json + cat new.json base_reports=$(ls old/sample-artifacts-meta/subsets/*/twister.json) python3 scripts/ci/combine_twister_reports.py $base_reports old.json + cat old.json python3 scripts/ci/compare_size_reports.py -o old.json -n new.json --md_output --show_only_diff > memory_usage.md cat memory_usage.md >> $GITHUB_STEP_SUMMARY