From d542d080fa17a97513d4a8f24a701701425d3742 Mon Sep 17 00:00:00 2001 From: despiegk Date: Sun, 7 Sep 2025 07:30:09 +0400 Subject: [PATCH] ... --- .github/workflows/hero_build.yml | 11 +++++++++++ install_v.sh | 8 +------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/hero_build.yml b/.github/workflows/hero_build.yml index f914d904..375963dd 100644 --- a/.github/workflows/hero_build.yml +++ b/.github/workflows/hero_build.yml @@ -9,13 +9,24 @@ on: jobs: build: + timeout-minutes: 60 + if: startsWith(github.ref, 'refs/tags/') strategy: fail-fast: false matrix: include: + - target: x86_64-unknown-linux-musl + os: ubuntu-latest + short-name: linux-i64 + - target: aarch64-unknown-linux-musl + os: ubuntu-latest + short-name: linux-arm64 - target: aarch64-apple-darwin os: macos-latest short-name: macos-arm64 + # - target: x86_64-apple-darwin + # os: macos-13 + # short-name: macos-i64 runs-on: ${{ matrix.os }} steps: diff --git a/install_v.sh b/install_v.sh index decdd91c..19e4183a 100755 --- a/install_v.sh +++ b/install_v.sh @@ -196,7 +196,7 @@ function os_update { apt autoremove -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes fi #apt install apt-transport-https ca-certificates curl software-properties-common -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes - package_install "apt-transport-https ca-certificates curl wget software-properties-common tmux make tcc gcc" + package_install "apt-transport-https ca-certificates curl wget software-properties-common tmux make gcc" package_install "rclone rsync mc redis-server screen net-tools git dnsutils htop ca-certificates screen lsb-release binutils pkg-config libssl-dev iproute2" elif [[ "${OSNAME}" == "darwin"* ]]; then @@ -546,12 +546,6 @@ if [ "$REMOVE" = true ]; then exit 0 fi -# Handle reset if requested -if [ "$RESET" = true ]; then - remove_all - echo "Reset complete" -fi - # Create code directory if it doesn't exist mkdir -p ~/code