From 51facf751b0af90919e47e1c4a976d9582fafba4 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink <3441183+sspaink@users.noreply.github.com> Date: Wed, 27 Apr 2022 11:26:32 -0500 Subject: [PATCH] chore: increase timeout for darwin packaging (#11041) --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 82b0f1cee..97b79ae42 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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'