From 2b02491b379948b3bdf0f576223d2553f5bdf02a Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 29 Oct 2024 19:14:00 -0400 Subject: [PATCH] ci: Add log separators for each sample --- .ci_build_samples.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.ci_build_samples.sh b/.ci_build_samples.sh index 115099935..c3b824546 100755 --- a/.ci_build_samples.sh +++ b/.ci_build_samples.sh @@ -15,9 +15,15 @@ else NUMCORES=$(nproc) fi +echo "::group::Building nxdk" +make NXDK_ONLY=y -j${NUMCORES} +echo "::endgroup::" + for dir in samples/*/ do + echo "::group::Building $dir" cd "$dir" make -j${NUMCORES} cd ../.. + echo "::endgroup::" done