chore: increase timeout for darwin packaging (#11041)

This commit is contained in:
Sebastian Spaink 2022-04-27 11:26:32 -05:00 committed by GitHub
parent f97e50a73d
commit 51facf751b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -151,13 +151,17 @@ commands:
- when:
condition: << parameters.nightly >>
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:
condition:
or:
- << parameters.nightly >>
steps:
- run: 'make package include_packages="$(make << parameters.type >>)"'
- run:
command: 'make package include_packages="$(make << parameters.type >>)"'
no_output_timeout: 30m
- store_artifacts:
path: './build/dist'
destination: 'build/dist'