chore: increase timeout for darwin packaging (#11041)
This commit is contained in:
parent
f97e50a73d
commit
51facf751b
|
|
@ -151,13 +151,17 @@ commands:
|
||||||
- when:
|
- when:
|
||||||
condition: << parameters.nightly >>
|
condition: << parameters.nightly >>
|
||||||
steps:
|
steps:
|
||||||
- run: 'NIGHTLY=1 make package include_packages="$(make << parameters.type >>)"'
|
- run:
|
||||||
|
command: 'NIGHTLY=1 make package include_packages="$(make << parameters.type >>)"'
|
||||||
|
no_output_timeout: 30m
|
||||||
- unless:
|
- unless:
|
||||||
condition:
|
condition:
|
||||||
or:
|
or:
|
||||||
- << parameters.nightly >>
|
- << parameters.nightly >>
|
||||||
steps:
|
steps:
|
||||||
- run: 'make package include_packages="$(make << parameters.type >>)"'
|
- run:
|
||||||
|
command: 'make package include_packages="$(make << parameters.type >>)"'
|
||||||
|
no_output_timeout: 30m
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: './build/dist'
|
path: './build/dist'
|
||||||
destination: 'build/dist'
|
destination: 'build/dist'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue