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 @@ -153,6 +153,7 @@ jobs:
153
153
|| '*-musllinux_* pp*'
154
154
}}
155
155
runner-vm-os : ${{ matrix.runner-vm-os }}
156
+ timeout-minutes : 15
156
157
source-tarball-name : >-
157
158
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
158
159
dists-artifact-name : ${{ needs.pre-setup.outputs.dists-artifact-name }}
@@ -569,6 +570,7 @@ jobs:
569
570
&& '*-manylinux_* pp*'
570
571
|| '*-musllinux_* pp*'
571
572
}}
573
+ timeout-minutes : 120
572
574
source-tarball-name : >-
573
575
${{ needs.build-pure-python-dists.outputs.sdist-filename }}
574
576
dists-artifact-name : ${{ needs.pre-setup.outputs.dists-artifact-name }}
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ on: # yamllint disable-line rule:truthy
27
27
description : Sdist filename wildcard
28
28
required : true
29
29
type : string
30
+ timeout-minutes :
31
+ description : Deadline for the job to complete
32
+ required : true
33
+ type : number
30
34
wheel-tags-to-skip :
31
35
description : Wheel tags to skip building
32
36
default : ' '
52
56
)
53
57
}}
54
58
runs-on : ${{ inputs.runner-vm-os }}
55
- timeout-minutes : ${{ inputs.qemu && 120 || 15 }}
59
+ timeout-minutes : ${{ fromJSON( inputs.timeout-minutes) }}
56
60
steps :
57
61
- name : Compute GHA artifact name ending
58
62
id : gha-artifact-name
You can’t perform that action at this time.
0 commit comments