From fdb3e4820c447e6a3c4138691bf73535124b8de0 Mon Sep 17 00:00:00 2001 From: Yosua Michael Maranatha Date: Mon, 17 Oct 2022 11:10:37 -0700 Subject: [PATCH] [fbsync] Increase inactivity timeout for binary build jobs (#6746) Summary: * Increase inactivity timeout for binary build jobs * Fix binary build steo Reviewed By: NicolasHug Differential Revision: D40427453 fbshipit-source-id: a22b4d124f7b1c8f46022143001fe7064db7b72c --- .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 1e4f2e3192d..713c1e6c421 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -377,7 +377,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: @@ -393,7 +398,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: @@ -411,7 +421,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 @@ -438,6 +448,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 d93ddb0bed3..b421dc1a79a 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -377,7 +377,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: @@ -393,7 +398,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: @@ -411,7 +421,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 @@ -438,6 +448,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