2 Commits

Author SHA1 Message Date
remittor
ef5e7155b5 build: Fix dependencies and disable step "Download tools" 2025-12-30 16:53:59 +03:00
remittor
b788e7e165 xmake: Fix warning "your configuration is out of sync" 2025-12-30 16:51:50 +03:00
2 changed files with 7 additions and 2 deletions

View File

@@ -162,7 +162,10 @@ jobs:
run: |
sudo apt-get -qq update
#sudo apt-get -qq update && sudo apt-get -qq upgrade
sudo apt-get -qq install $(cat $DEPENDENCIES)
sudo apt-get -qq install build-essential gawk flex rsync swig unzip zlib1g-dev file wget
sudo apt-get -qq install libc6-dev clang flex bison g++ gcc-multilib g++-multilib
sudo apt-get -qq install gettext git libncurses5-dev libssl-dev python3-setuptools
sudo apt-get -qq install libc6-dev pkg-config
sudo apt-get -qq autoremove --purge
sudo apt-get -qq clean
sudo timedatectl set-timezone "$TZ"
@@ -236,7 +239,7 @@ jobs:
- name: Download tools and toolchain
id: tools_download
if: steps.configure.outputs.status == 'success'
if: false # steps.configure.outputs.status == 'success'
run: |
cd $BUILD_ROOT
G_TARGET_ARCH=$( grep -so '^CONFIG_TARGET_ARCH_PACKAGES=' .config | cut -d'"' -f2 )

View File

@@ -322,6 +322,8 @@ function build_target {
make_jobs=$( grep processor /proc/cpuinfo | tail -n 1 | awk '{print $3}' )
fi
cp -af $XDIR/.config $XDIR/tmp/.config
#make tools/install -j$make_jobs
#make toolchain/install -j$make_jobs