Skip to content

Commit 3fd058d

Browse files
committed
ci: drop Windows 32-bit ARM builds
1 parent fae29a8 commit 3fd058d

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/windows_builds.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ windows-2022, windows-2025 ]
24-
arch: [ x64, Win32, ARM64, ARM ]
24+
arch: [ x64, Win32, ARM64 ]
2525
type: [ dynamic, static ]
2626
config: [ "Release" ]
27-
# windows-2025 dropped support for 32-bit ARM
28-
exclude:
29-
- os: windows-2025
30-
arch: ARM
3127
steps:
3228
- uses: actions/checkout@v6
3329
- name: build

windows/release.ps1

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# SPDX-License-Identifier: BSD-2-Clause
55

66
$ErrorActionPreference = "Stop"
7-
$Architectures = @('x64', 'Win32', 'ARM64', 'ARM')
8-
$InstallPrefixes = @('Win64', 'Win32', 'ARM64', 'ARM')
7+
$Architectures = @('x64', 'Win32', 'ARM64')
8+
$InstallPrefixes = @('Win64', 'Win32', 'ARM64')
99
$Types = @('dynamic', 'static')
1010
$Config = 'Release'
1111
$SDK = '143'
@@ -19,9 +19,6 @@ foreach ($Arch in $Architectures) {
1919
Type = $Type
2020
Config = $Config
2121
}
22-
if ($buildParams['Arch'] -eq 'ARM') {
23-
$buildParams['WinSDK'] = '10.0.22621.0'
24-
}
2522
./build.ps1 @buildParams
2623
}
2724
}

0 commit comments

Comments
 (0)