Skip to content

Commit 832a6ab

Browse files
committed
Clarify Windows ARM clang job naming
Rename the Windows ARM clang jobs to windows_arm_clang_msvc and windows_arm_clang_msys2 and adjust their display names to clang-msvc / clang-msys2. The first runs clang against the MSVC/Windows SDK toolchain and python.org CPython for Windows ARM, while the second runs clang inside the MSYS2/MinGW-w64 CLANGARM64 environment with MSYS2 Python. Using clearly distinguished job names makes it easier to discuss failures and behavior in each environment without ambiguity, both in logs and in PR review discussions.
1 parent 5277e80 commit 832a6ab

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,8 @@ jobs:
12061206
- name: Clean directory
12071207
run: git clean -fdx
12081208

1209-
windows_arm:
1209+
# Clang with MSVC/Windows SDK toolchain + python.org CPython (Windows ARM)
1210+
windows_arm_clang_msvc:
12101211
if: github.event.pull_request.draft == false
12111212

12121213
strategy:
@@ -1218,7 +1219,7 @@ jobs:
12181219
runs-on: "${{ matrix.os }}"
12191220
timeout-minutes: 90
12201221

1221-
name: "🐍 ${{ matrix.python }} • ${{ matrix.os }} • clang"
1222+
name: "🐍 ${{ matrix.python }} • ${{ matrix.os }} • clang-msvc"
12221223

12231224
steps:
12241225
- name: Show env
@@ -1264,13 +1265,14 @@ jobs:
12641265
- name: Visibility test
12651266
run: cmake --build . --target test_cross_module_rtti -j 2
12661267

1267-
windows_arm_msys2:
1268+
# Clang in MSYS2/MinGW-w64 CLANGARM64 toolchain + MSYS2 Python (Windows ARM)
1269+
windows_arm_clang_msys2:
12681270
if: github.event.pull_request.draft == false
12691271

12701272
runs-on: windows-11-arm
12711273
timeout-minutes: 90
12721274

1273-
name: "🐍 3.12 • windows-11-arm • clangmsys2"
1275+
name: "🐍 3.12 • windows-11-arm • clang-msys2"
12741276

12751277
defaults:
12761278
run:

0 commit comments

Comments
 (0)