From 85ac553ded1497c96e8646fa9d77ebe630716399 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 30 Apr 2023 23:23:07 +0800 Subject: [PATCH] remove armv7 build, because some dependencies are not supported --- .github/workflows/build-linux-arm.yml | 1 - README.md | 10 +++++----- bin/spc-alpine-docker | 5 ----- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-linux-arm.yml b/.github/workflows/build-linux-arm.yml index cddd2707..c998b618 100644 --- a/.github/workflows/build-linux-arm.yml +++ b/.github/workflows/build-linux-arm.yml @@ -9,7 +9,6 @@ on: type: choice options: - aarch64 - - armv7l version: required: true description: php version to compile diff --git a/README.md b/README.md index c6c721b0..967590a0 100755 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ If you are using English, see [English README](README-en.md). 下面是架构支持情况,`CI` 代表支持 GitHub Action 构建,`Local` 代表支持本地构建,空 代表暂不支持。 -| | x86_64 | aarch64 | armv7l | -|---------|-----------|-----------|-----------| -| macOS | CI, Local | Local | | -| Linux | CI, Local | CI, Local | CI, Local | -| Windows | | | | +| | x86_64 | aarch64 | +|---------|-----------|-----------| +| macOS | CI, Local | Local | +| Linux | CI, Local | CI, Local | +| Windows | | | > macOS-arm64 因 GitHub 暂未提供 arm runner,如果要构建 arm 二进制,可以使用手动构建。 diff --git a/bin/spc-alpine-docker b/bin/spc-alpine-docker index 2a4549c4..7f444426 100755 --- a/bin/spc-alpine-docker +++ b/bin/spc-alpine-docker @@ -36,11 +36,6 @@ aarch64) echo -e "\e[033m* Using different arch needs to setup qemu-static for docker !\e[0m" $DOCKER_EXECUTABLE run --rm --privileged multiarch/qemu-user-static:register --reset > /dev/null ;; -armv7l) - ALPINE_FROM=multiarch/alpine:armv7-edge - echo -e "\e[033m* Using different arch needs to setup qemu-static for docker !\e[0m" - $DOCKER_EXECUTABLE run --rm --privileged multiarch/qemu-user-static:register --reset > /dev/null - ;; *) echo "Current arch is not supported to run in docker: $SPC_USE_ARCH" exit 1