diff --git a/.github/build/friendly-filenames.json b/.github/build/friendly-filenames.json index d4001f70d43a..e6679aedd370 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 a4fe5a607cb0..6d562c25b753 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 2e5da622cccc..ec839a0e229f 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"