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 @@ -154,7 +154,8 @@ jobs:
154
154
}}
155
155
uses : ./.github/workflows/reusable-cibuildwheel.yml
156
156
with :
157
- tag : ${{ matrix.tag }}
157
+ check-name : >-
158
+ Build ${{ matrix.tag }} wheels on ${{ matrix.runner-vm-os }}
158
159
wheel-tags-to-skip : >-
159
160
${{
160
161
(github.event_name != 'push' || !contains(github.ref, 'refs/tags/'))
@@ -414,8 +415,9 @@ jobs:
414
415
- musllinux
415
416
uses : ./.github/workflows/reusable-cibuildwheel.yml
416
417
with :
418
+ check-name : >-
419
+ Build ${{ matrix.tag }} wheels for ${{ matrix.qemu }}
417
420
qemu : ${{ matrix.qemu }}
418
- tag : ${{ matrix.tag }}
419
421
wheel-tags-to-skip : >-
420
422
${{
421
423
(matrix.tag == 'musllinux')
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ on: # yamllint disable-line rule:truthy
9
9
description : Workflow artifact name containing dists
10
10
required : true
11
11
type : string
12
+ check-name :
13
+ description : A custom name for the Checks API-reported status
14
+ required : false
15
+ type : string
12
16
cython-tracing :
13
17
description : Whether to build Cython modules with line tracing
14
18
default : ' 0'
@@ -19,11 +23,6 @@ on: # yamllint disable-line rule:truthy
19
23
default : ' '
20
24
required : false
21
25
type : string
22
- tag :
23
- description : Build platform tag wheels
24
- default : ' '
25
- required : false
26
- type : string
27
26
runner-vm-os :
28
27
description : VM OS to use
29
28
default : ubuntu-latest
48
47
49
48
build-wheel :
50
49
name : >-
51
- Build ${{ inputs.tag }} wheels on ${{ inputs.runner-vm-os }} ${{ inputs.qemu }}
50
+ ${{
51
+ inputs.check-name
52
+ && inputs.check-name
53
+ || format(
54
+ 'Build wheels on {0} {1}',
55
+ inputs.runner-vm-os,
56
+ inputs.qemu
57
+ )
58
+ }}
52
59
runs-on : ${{ inputs.runner-vm-os }}
53
60
timeout-minutes : ${{ inputs.qemu && 25 || 11 }}
54
61
steps :
@@ -111,7 +118,6 @@ jobs:
111
118
name : ${{ inputs.dists-artifact-name }}-
112
119
${{ inputs.runner-vm-os }}-
113
120
${{ inputs.qemu }}-
114
- ${{ inputs.tag }}-
115
121
${{ steps.gha-artifact-name.outputs.hash }}
116
122
path : ./wheelhouse/*.whl
117
123
You can’t perform that action at this time.
0 commit comments