From 9e655794e5dcd5991fb88be4241cbad74bdf702f Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 26 Nov 2024 21:17:52 -0800 Subject: [PATCH] ci.yml: stop testing Visual Studio + ARM32 This combination no longer builds due the following error: error MSB8037: The Windows SDK version 10.0.26100.0 for Desktop C++ ARM Apps was not found. --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87366eb3..f3f5c8af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,11 +139,8 @@ jobs: name: Build (Windows, Visual Studio ${{matrix.toolset}}, ${{matrix.platform}}) strategy: matrix: - platform: [ARM64, ARM] + platform: [ARM64] toolset: [v143, ClangCL] - exclude: # Exclude unsupported combinations - - platform: ARM - toolset: ClangCL runs-on: windows-latest steps: - uses: actions/checkout@v4