File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,8 @@ jobs:
139
139
}}
140
140
uses : ./.github/workflows/reusable-cibuildwheel.yml
141
141
with :
142
- tag : ${{ matrix.tag }}
142
+ check-name : >-
143
+ Build ${{ matrix.tag }} wheels on ${{ matrix.runner-vm-os }}
143
144
wheel-tags-to-skip : >-
144
145
${{
145
146
(github.event_name != 'push' || !contains(github.ref, 'refs/tags/'))
@@ -559,8 +560,9 @@ jobs:
559
560
- musllinux
560
561
uses : ./.github/workflows/reusable-cibuildwheel.yml
561
562
with :
563
+ check-name : >-
564
+ Build ${{ matrix.tag }} wheels for ${{ matrix.qemu }}
562
565
qemu : ${{ matrix.qemu }}
563
- tag : ${{ matrix.tag }}
564
566
wheel-tags-to-skip : >-
565
567
${{
566
568
(matrix.tag == 'musllinux')
Original file line number Diff line number Diff line change @@ -9,13 +9,12 @@ on: # yamllint disable-line rule:truthy
9
9
description : Workflow artifact name containing dists
10
10
required : true
11
11
type : string
12
- qemu :
13
- description : Emulated QEMU architecture
14
- default : ' '
12
+ check-name :
13
+ description : A custom name for the Checks API-reported status
15
14
required : false
16
15
type : string
17
- tag :
18
- description : Build platform tag wheels
16
+ qemu :
17
+ description : Emulated QEMU architecture
19
18
default : ' '
20
19
required : false
21
20
type : string
43
42
44
43
build-wheel :
45
44
name : >-
46
- Build ${{ inputs.tag }} wheels on ${{ inputs.runner-vm-os }} ${{ inputs.qemu }}
45
+ ${{
46
+ inputs.check-name
47
+ && inputs.check-name
48
+ || format(
49
+ 'Build wheels on {0} {1}',
50
+ inputs.runner-vm-os,
51
+ inputs.qemu
52
+ )
53
+ }}
47
54
runs-on : ${{ inputs.runner-vm-os }}
48
55
timeout-minutes : ${{ inputs.qemu && 120 || 15 }}
49
56
steps :
@@ -103,7 +110,6 @@ jobs:
103
110
name : ${{ inputs.dists-artifact-name }}-
104
111
${{ inputs.runner-vm-os }}-
105
112
${{ inputs.qemu }}-
106
- ${{ inputs.tag }}-
107
113
${{ steps.gha-artifact-name.outputs.hash }}
108
114
path : ./wheelhouse/*.whl
109
115
You can’t perform that action at this time.
0 commit comments