Skip to content

Commit

Permalink
ci: Add log separators for each sample
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Oct 31, 2024
1 parent 5dd9951 commit 2b02491
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .ci_build_samples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2b02491

Please sign in to comment.