mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
[GITHUB] Fix MSVC ARM build
The latest GitHub Actions runner image 20241113.3.0 uses WDK 10.0.26100.0, which dropped support for 32-bit ARM platform: - https://github.com/golang/go/issues/68552#issuecomment-2290064500 - https://github.com/actions/runner-images/issues/10981 Fix the failing build by sticking to WDK 10.0.22621.0. CORE-17604
This commit is contained in:
parent
edb6d19aa8
commit
096a5518e5
1 changed files with 1 additions and 0 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -165,6 +165,7 @@ jobs:
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
with:
|
with:
|
||||||
arch: amd64_arm
|
arch: amd64_arm
|
||||||
|
sdk: 10.0.22621.0 # Windows SDK 10.0.26100.0 dropped support for 32-bit ARM
|
||||||
toolset: ${{matrix.toolset}}
|
toolset: ${{matrix.toolset}}
|
||||||
- name: Activate VS cmd (arm64)
|
- name: Activate VS cmd (arm64)
|
||||||
if: ${{ matrix.arch == 'arm64' }}
|
if: ${{ matrix.arch == 'arm64' }}
|
||||||
|
|
Loading…
Reference in a new issue