Skip to content

Commit

Permalink
ci: Build nxdk before samples
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Oct 30, 2024
1 parent 5dd9951 commit 917f195
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 917f195

Please sign in to comment.