Skip to content

Commit 40a9321

Browse files
committed
Reduce Windows ARM clang matrix size
Limit the windows_arm_clang_msvc job to Python 3.13 and the windows_arm_clang_msys2 job to Python 3.12 to stay within our constrained GitHub Actions resources. Keep both jobs using a matrix over os and python so their structure stays aligned and it remains easy to expand coverage when needed.
1 parent 832a6ab commit 40a9321

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ jobs:
12141214
fail-fast: false
12151215
matrix:
12161216
os: [windows-11-arm]
1217-
python: ['3.11', '3.12', '3.13', '3.14']
1217+
python: ['3.13']
12181218

12191219
runs-on: "${{ matrix.os }}"
12201220
timeout-minutes: 90
@@ -1269,10 +1269,16 @@ jobs:
12691269
windows_arm_clang_msys2:
12701270
if: github.event.pull_request.draft == false
12711271

1272-
runs-on: windows-11-arm
1272+
strategy:
1273+
fail-fast: false
1274+
matrix:
1275+
os: [windows-11-arm]
1276+
python: ['3.12']
1277+
1278+
runs-on: "${{ matrix.os }}"
12731279
timeout-minutes: 90
12741280

1275-
name: "🐍 3.12 • windows-11-arm • clang-msys2"
1281+
name: "🐍 ${{ matrix.python }} • ${{ matrix.os }} • clang-msys2"
12761282

12771283
defaults:
12781284
run:

0 commit comments

Comments
 (0)