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 @@ -156,7 +156,8 @@ jobs:
156
156
}}
157
157
uses : ./.github/workflows/reusable-cibuildwheel.yml
158
158
with :
159
- tag : ${{ matrix.tag }}
159
+ check-name : >-
160
+ Build ${{ matrix.tag }} wheels on ${{ matrix.runner-vm-os }}
160
161
wheel-tags-to-skip : >-
161
162
${{
162
163
(github.event_name != 'push' || !contains(github.ref, 'refs/tags/'))
@@ -510,8 +511,9 @@ jobs:
510
511
- musllinux
511
512
uses : ./.github/workflows/reusable-cibuildwheel.yml
512
513
with :
514
+ check-name : >-
515
+ Build ${{ matrix.tag }} wheels for ${{ matrix.qemu }}
513
516
qemu : ${{ matrix.qemu }}
514
- tag : ${{ matrix.tag }}
515
517
wheel-tags-to-skip : >-
516
518
${{
517
519
(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 && 60 || 20 }}
54
61
steps :
@@ -115,7 +122,6 @@ jobs:
115
122
name : ${{ inputs.dists-artifact-name }}-
116
123
${{ inputs.runner-vm-os }}-
117
124
${{ inputs.qemu }}-
118
- ${{ inputs.tag }}-
119
125
${{ steps.gha-artifact-name.outputs.hash }}
120
126
path : ./wheelhouse/*.whl
121
127
You can’t perform that action at this time.
0 commit comments