From 979043f064d6d162fd7f40c738a024c2d502cdd1 Mon Sep 17 00:00:00 2001 From: remittor Date: Tue, 30 Dec 2025 08:33:09 +0300 Subject: [PATCH] build: Add make tools and toolchain --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 946f6d7..5fedb8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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