File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ jobs:
169
169
|| '*-musllinux_* pp*'
170
170
}}
171
171
runner-vm-os : ${{ matrix.runner-vm-os }}
172
+ timeout-minutes : 11
172
173
source-tarball-name : >-
173
174
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
174
175
dists-artifact-name : ${{ needs.pre-setup.outputs.dists-artifact-name }}
@@ -424,6 +425,7 @@ jobs:
424
425
&& '*-manylinux_* pp*'
425
426
|| '*-musllinux_* pp*'
426
427
}}
428
+ timeout-minutes : 25
427
429
source-tarball-name : >-
428
430
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
429
431
dists-artifact-name : ${{ needs.pre-setup.outputs.dists-artifact-name }}
Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ on: # yamllint disable-line rule:truthy
32
32
description : Sdist filename wildcard
33
33
required : true
34
34
type : string
35
+ timeout-minutes :
36
+ description : Deadline for the job to complete
37
+ required : true
38
+ type : number
35
39
wheel-tags-to-skip :
36
40
description : Wheel tags to skip building
37
41
default : ' '
57
61
)
58
62
}}
59
63
runs-on : ${{ inputs.runner-vm-os }}
60
- timeout-minutes : ${{ inputs.qemu && 25 || 11 }}
64
+ timeout-minutes : ${{ fromJSON( inputs.timeout-minutes) }}
61
65
steps :
62
66
- name : Compute GHA artifact name ending
63
67
id : gha-artifact-name
You can’t perform that action at this time.
0 commit comments