From 409ebc28b4e401b8fd60c8a4b8a6edccca542e82 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Fri, 5 Sep 2025 11:53:03 -0400 Subject: [PATCH] Exclude x86 and x64 arches from windows-11-arm builds --- .github/workflows/ci-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 424a4ab3..d36bf517 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -126,6 +126,10 @@ jobs: architecture: x64 - os: windows-2022 architecture: arm64 + - os: windows-11-arm + architecture: x86 + - os: windows-11-arm + architecture: x64 # Only build oldest and newest Pythons on PRs - python-version: ${{ github.event_name == 'pull_request' && '3.10' }} - python-version: ${{ github.event_name == 'pull_request' && '3.11' }}