mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
[GITHUB] build-msvc-arm: Limit ARM to windows-2022 (#8363)
Needed SDK support is not available on windows-2025. Also, tweak toolset line. CORE-20325 CORE-17604
This commit is contained in:
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@@ -145,11 +145,19 @@ jobs:
|
|||||||
build-msvc-arm:
|
build-msvc-arm:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolset: ['14','14.2'] # VS 2022, 2019
|
os: [windows-2022, windows-latest]
|
||||||
|
toolset: ['14', '14.29'] # VS 2022 (ongoing), 2019 (last)
|
||||||
arch: [arm, arm64]
|
arch: [arm, arm64]
|
||||||
config: [Debug, Release]
|
config: [Debug, Release]
|
||||||
|
exclude:
|
||||||
|
# arm64: windows-latest is enough/fine.
|
||||||
|
- os: windows-2022
|
||||||
|
arch: arm64
|
||||||
|
# arm (sdk): only available on windows-2022.
|
||||||
|
- os: windows-latest
|
||||||
|
arch: arm
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: windows-latest
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- name: Install ninja
|
- name: Install ninja
|
||||||
run: choco install -y ninja
|
run: choco install -y ninja
|
||||||
|
Reference in New Issue
Block a user