From 6e04162a205a4ffcbfacf4a4febe04becdadf741 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sun, 28 Dec 2025 15:31:42 +0300 Subject: [PATCH] github actions: remove arm-old target - luajit fail reason revealed --- .github/workflows/build.yml | 5 +---- docs/changes.txt | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fafdd26..c1a0b89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,8 +26,6 @@ jobs: tool: aarch64-unknown-linux-musl - arch: arm tool: arm-unknown-linux-musleabi - - arch: arm-old - tool: arm-unknown-linux-musleabi # - arch: armhf # tool: arm-unknown-linux-musleabihf # - arch: armv7 @@ -110,7 +108,7 @@ jobs: export PKG_CONFIG_PATH=$DEPS_DIR/lib/pkgconfig export STAGING_DIR=$RUNNER_TEMP - if [[ "$ARCH" == lexra ]] || [[ "$ARCH" == ppc ]] || [[ "$ARCH" == x86 ]] || [[ "$ARCH" == arm-old ]]; then + if [[ "$ARCH" == lexra ]] || [[ "$ARCH" == ppc ]] || [[ "$ARCH" == x86 ]] ; then # use classic lua wget -qO- https://www.lua.org/ftp/lua-${LUA_RELEASE}.tar.gz | tar -xz ( @@ -529,7 +527,6 @@ jobs: *-android-x86_64 ) run_dir android-x86_64 ;; *-freebsd-x86_64 ) run_dir freebsd-x86_64 ;; *-linux-arm ) run_dir linux-arm ;; - *-linux-arm-old ) run_dir linux-arm-old ;; *-linux-arm64 ) run_dir linux-arm64 ;; *-linux-mips64 ) run_dir linux-mips64 ;; *-linux-mipselsf ) run_dir linux-mipsel ;; diff --git a/docs/changes.txt b/docs/changes.txt index 91c5c28..6b26acc 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -138,3 +138,4 @@ v0.7.7 * init.d: 50-dht4all NFQWS_OPT_DHT_PKT_OUT * nfqws2: support 48-bit arithmetics +* github actions: remove arm-old target - luajit fail reason revealed