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 @@ -170,6 +170,7 @@ jobs:
170
170
|| '*-musllinux_* pp*'
171
171
}}
172
172
runner-vm-os : ${{ matrix.runner-vm-os }}
173
+ timeout-minutes : 20
173
174
source-tarball-name : >-
174
175
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
175
176
dists-artifact-name : ${{ needs.pre-setup.outputs.dists-artifact-name }}
@@ -520,6 +521,7 @@ jobs:
520
521
&& '*-manylinux_* pp*'
521
522
|| '*-musllinux_* pp*'
522
523
}}
524
+ timeout-minutes : 60
523
525
source-tarball-name : >-
524
526
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
525
527
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 && 60 || 20 }}
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