From 285b6ddd1b9ff50e7b8d1d1299e4e023c86edc26 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink Date: Wed, 27 Apr 2022 09:23:58 -0500 Subject: [PATCH] chore: increase timeout for darwin packaging --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 82b0f1ceec7d1..97b79ae42c6ee 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'