https://git.reactos.org/?p=reactos.git;a=commitdiff;h=096a5518e50ca43535eeb7b54e2375615f9128ad

commit 096a5518e50ca43535eeb7b54e2375615f9128ad
Author:     Stanislav Motylkov <x86co...@gmail.com>
AuthorDate: Thu Nov 21 23:50:49 2024 +0100
Commit:     Stanislav Motylkov <x86co...@gmail.com>
CommitDate: Fri Nov 22 00:14:10 2024 +0100

    [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
---
 .github/workflows/build.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d36e80ae571..6e53c2df7f1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -165,6 +165,7 @@ jobs:
       uses: ilammy/msvc-dev-cmd@v1
       with:
         arch: amd64_arm
+        sdk: 10.0.22621.0   # Windows SDK 10.0.26100.0 dropped support for 
32-bit ARM
         toolset: ${{matrix.toolset}}
     - name: Activate VS cmd (arm64)
       if: ${{ matrix.arch == 'arm64' }}

Reply via email to