Skip to content

Commit 47c7116

Browse files
timsaucerclaude
andcommitted
ci: standardize wheel build job names as "<OS> <arch> (<tag>)"
The mac/Windows matrix shared a single name template that prepended "macOS arm64 & Windows" to every entry, which got truncated in the GitHub UI sidebar and made it hard to tell macOS and Windows runs apart. Rename all wheel build jobs to the same pattern so the OS, architecture, and python tag are visible at a glance: - Linux x86_64 / arm64 - macOS arm64 / x86_64 - Windows x86_64 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 1b767b0 commit 47c7116

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
# ============================================
136136
build-manylinux-x86_64:
137137
needs: [generate-license, lint-rust, lint-python]
138-
name: ManyLinux x86_64 (${{ matrix.python-tag }})
138+
name: Linux x86_64 (${{ matrix.python-tag }})
139139
runs-on: ubuntu-latest
140140
strategy:
141141
fail-fast: false
@@ -214,7 +214,7 @@ jobs:
214214
# ============================================
215215
build-manylinux-aarch64:
216216
needs: [generate-license, lint-rust, lint-python]
217-
name: ManyLinux arm64 (${{ matrix.python-tag }})
217+
name: Linux arm64 (${{ matrix.python-tag }})
218218
runs-on: ubuntu-24.04-arm
219219
strategy:
220220
fail-fast: false
@@ -276,7 +276,7 @@ jobs:
276276
# ============================================
277277
build-python-mac-win:
278278
needs: [generate-license, lint-rust, lint-python]
279-
name: macOS arm64 & Windows (${{ matrix.python-tag }} / ${{ matrix.os }})
279+
name: ${{ matrix.os == 'macos-latest' && 'macOS arm64' || 'Windows x86_64' }} (${{ matrix.python-tag }})
280280
runs-on: ${{ matrix.os }}
281281
strategy:
282282
fail-fast: false

0 commit comments

Comments
 (0)