Skip to content

Commit 9aaa898

Browse files
[GITHUB] build-msvc-arm: Limit ARM to windows-2022 (reactos#8363)
Needed SDK support is not available on windows-2025. Also, tweak toolset line. CORE-20325 CORE-17604
1 parent e5b2d5c commit 9aaa898

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,19 @@ jobs:
145145
build-msvc-arm:
146146
strategy:
147147
matrix:
148-
toolset: ['14','14.2'] # VS 2022, 2019
148+
os: [windows-2022, windows-latest]
149+
toolset: ['14', '14.29'] # VS 2022 (ongoing), 2019 (last)
149150
arch: [arm, arm64]
150151
config: [Debug, Release]
152+
exclude:
153+
# arm64: windows-latest is enough/fine.
154+
- os: windows-2022
155+
arch: arm64
156+
# arm (sdk): only available on windows-2022.
157+
- os: windows-latest
158+
arch: arm
151159
fail-fast: false
152-
runs-on: windows-latest
160+
runs-on: ${{matrix.os}}
153161
steps:
154162
- name: Install ninja
155163
run: choco install -y ninja

0 commit comments

Comments
 (0)