From 096a5518e50ca43535eeb7b54e2375615f9128ad Mon Sep 17 00:00:00 2001 From: Stanislav Motylkov Date: Thu, 21 Nov 2024 23:50:49 +0100 Subject: [PATCH] [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' }}