build: Add make tools and toolchain

This commit is contained in:
remittor
2025-12-30 08:33:09 +03:00
parent 4e7389f304
commit 979043f064

View File

@@ -243,6 +243,8 @@ jobs:
cd $BUILD_ROOT
MAKE_JOBS=$(($(nproc)+1))
echo "$MAKE_JOBS thread compile"
make tools/install -j$MAKE_JOBS
make toolchain/install -j$MAKE_JOBS
if [ "$FAKE_BUILD" != "true" -a "$TEST_BUILD" = "true" -a "$PACKAGE_DIR" != "" ]; then
make $PACKAGE_DIR/compile V=sc BUILD_LOG=1
exit 99