From 7dc3f87cd89b4a5c5a92102ba1a2cc7c42b4ff4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=90=B2=93=F0=90=B3=9B=F0=90=B3=AA=F0=90=B3=82?= =?UTF-8?q?=F0=90=B3=90=20=F0=90=B2=80=F0=90=B3=A2=F0=90=B3=A6=F0=90=B3=AB?= =?UTF-8?q?=F0=90=B3=A2=20=F0=90=B2=A5=F0=90=B3=94=F0=90=B3=9B=F0=90=B3=AA?= =?UTF-8?q?=F0=90=B3=8C=F0=90=B3=91=F0=90=B3=96=F0=90=B3=87?= <26771058+KobeArthurScofield@users.noreply.github.com> Date: Thu, 12 Feb 2026 12:06:33 +0800 Subject: [PATCH] Build: Remove Windows ARM 32-bit build (#4584) --- .github/build/friendly-filenames.json | 3 +-- .github/workflows/release.yml | 8 +------- .github/workflows/scheduled-assets-update.yml | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/build/friendly-filenames.json b/.github/build/friendly-filenames.json index d4001f70..e6679aed 100644 --- a/.github/build/friendly-filenames.json +++ b/.github/build/friendly-filenames.json @@ -29,6 +29,5 @@ "openbsd-arm7": { "friendlyName": "openbsd-arm32-v7a" }, "windows-386": { "friendlyName": "windows-32" }, "windows-amd64": { "friendlyName": "windows-64" }, - "windows-arm64": { "friendlyName": "windows-arm64-v8a" }, - "windows-arm7": { "friendlyName": "windows-arm32-v7a" } + "windows-arm64": { "friendlyName": "windows-arm64-v8a" } } diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4fe5a60..6d562c25 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: break fi done - LIST=('amd64' 'x86' 'arm64' 'arm') + LIST=('amd64' 'x86' 'arm64') for ARCHITECTURE in "${LIST[@]}" do echo -e "Checking wintun.dll for ${ARCHITECTURE}..." @@ -114,9 +114,6 @@ jobs: # Windows ARM - goos: windows goarch: arm64 - - goos: windows - goarch: arm - goarm: 7 # BEGIN Other architectures # BEGIN riscv64 & ARM64 & LOONG64 - goos: linux @@ -250,9 +247,6 @@ jobs: if [[ ${GOARCH} == 'arm64' ]]; then mv resources/wintun/bin/arm64/wintun.dll build_assets/ fi - if [[ ${GOARCH} == 'arm' ]]; then - mv resources/wintun/bin/arm/wintun.dll build_assets/ - fi mv resources/wintun/LICENSE.txt build_assets/LICENSE-wintun.txt fi diff --git a/.github/workflows/scheduled-assets-update.yml b/.github/workflows/scheduled-assets-update.yml index 2e5da622..ec839a0e 100644 --- a/.github/workflows/scheduled-assets-update.yml +++ b/.github/workflows/scheduled-assets-update.yml @@ -89,7 +89,7 @@ jobs: max_attempts: 60 command: | [ -d 'resources' ] || mkdir resources - LIST=('amd64' 'x86' 'arm64' 'arm') + LIST=('amd64' 'x86' 'arm64') for ARCHITECTURE in "${LIST[@]}" do FILE_PATH="resources/wintun/bin/${ARCHITECTURE}/wintun.dll"