Skip to content

Commit

Permalink
Increase inactivity timeout for binary build jobs (#6746) (#6747)
Browse files Browse the repository at this point in the history
* Increase inactivity timeout for binary build jobs

* Fix binary build steo
  • Loading branch information
atalman committed Oct 11, 2022
1 parent f15f4e8 commit 5ce4506
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
17 changes: 14 additions & 3 deletions .circleci/config.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions .circleci/config.yml.in
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5ce4506

Please sign in to comment.