Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit fcc9a77

Browse files
author
Hendrik van Antwerpen
committed
Make summary report more compact
1 parent 742757c commit fcc9a77

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

script/ci-perf-summary-md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,18 @@ if [ -n "$desc" ]; then
2727
printf '%s\n' "$desc"
2828
printf '\n'
2929
fi
30-
printf '### Before\n'
3130
printf '\n'
31+
printf '<details>\n'
32+
printf '<summary>Before</summary>\n'
3233
printf '```\n'
3334
ms_print --x="$graph_w" --y="$graph_h" "$massif_before" | head -n +$summary_lines
3435
printf '```\n'
36+
printf '</details>\n'
3537
printf '\n'
36-
printf '### After\n'
3738
printf '\n'
39+
printf '<details>\n'
40+
printf '<summary>After</summary>\n'
3841
printf '```\n'
3942
ms_print --x="$graph_w" --y="$graph_h" "$massif_after" | head -n +$summary_lines
4043
printf '```\n'
44+
printf '</details>\n'

0 commit comments

Comments
 (0)