From 01666ae613f903e77da58d006bee5f3405fc6b30 Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Fri, 9 Aug 2024 08:34:20 -0700 Subject: [PATCH] ci: grouped output --- Tools/ci_build_all_runner.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/ci_build_all_runner.sh b/Tools/ci_build_all_runner.sh index 2d0bc5408a..4f314c0fca 100755 --- a/Tools/ci_build_all_runner.sh +++ b/Tools/ci_build_all_runner.sh @@ -5,5 +5,7 @@ targets=$1 for target in ${targets//,/ } do + echo "::group::Building: [${target}]" make $target + echo "::endgroup::" done