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