From 5ce4506ac43c8b1dc1736ed9e51c58e0e29f5237 Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Tue, 11 Oct 2022 15:22:59 -0400 Subject: [PATCH] Increase inactivity timeout for binary build jobs (#6746) (#6747) * Increase inactivity timeout for binary build jobs * Fix binary build steo --- .circleci/config.yml | 17 ++++++++++++++--- .circleci/config.yml.in | 17 ++++++++++++++--- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e70cd4481e1..e1c764a585c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -363,7 +363,12 @@ jobs: steps: - checkout_merge - designate_upload_channel - - run: packaging/build_wheel.sh + - run: + name: Build conda packages + no_output_timeout: 30m + command: | + set -ex + packaging/build_wheel.sh - store_artifacts: path: dist - persist_to_workspace: @@ -379,7 +384,12 @@ jobs: steps: - checkout_merge - designate_upload_channel - - run: packaging/build_conda.sh + - run: + name: Build conda packages + no_output_timeout: 30m + command: | + set -ex + packaging/build_conda.sh - store_artifacts: path: /opt/conda/conda-bld/linux-64 - persist_to_workspace: @@ -397,7 +407,7 @@ jobs: - designate_upload_channel - run: name: Build conda packages - no_output_timeout: 20m + no_output_timeout: 30m command: | set -ex source packaging/windows/internal/vc_install_helper.sh @@ -424,6 +434,7 @@ jobs: - designate_upload_channel - run: name: Build wheel packages + no_output_timeout: 30m command: | set -ex source packaging/windows/internal/vc_install_helper.sh diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index e27dcd15073..f75ac0fe2ff 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -363,7 +363,12 @@ jobs: steps: - checkout_merge - designate_upload_channel - - run: packaging/build_wheel.sh + - run: + name: Build conda packages + no_output_timeout: 30m + command: | + set -ex + packaging/build_wheel.sh - store_artifacts: path: dist - persist_to_workspace: @@ -379,7 +384,12 @@ jobs: steps: - checkout_merge - designate_upload_channel - - run: packaging/build_conda.sh + - run: + name: Build conda packages + no_output_timeout: 30m + command: | + set -ex + packaging/build_conda.sh - store_artifacts: path: /opt/conda/conda-bld/linux-64 - persist_to_workspace: @@ -397,7 +407,7 @@ jobs: - designate_upload_channel - run: name: Build conda packages - no_output_timeout: 20m + no_output_timeout: 30m command: | set -ex source packaging/windows/internal/vc_install_helper.sh @@ -424,6 +434,7 @@ jobs: - designate_upload_channel - run: name: Build wheel packages + no_output_timeout: 30m command: | set -ex source packaging/windows/internal/vc_install_helper.sh