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: - 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'