Skip to content

Commit 5ce4506

Browse files
authored
Increase inactivity timeout for binary build jobs (#6746) (#6747)
* Increase inactivity timeout for binary build jobs * Fix binary build steo
1 parent f15f4e8 commit 5ce4506

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

.circleci/config.yml

Lines changed: 14 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config.yml.in

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,12 @@ jobs:
363363
steps:
364364
- checkout_merge
365365
- designate_upload_channel
366-
- run: packaging/build_wheel.sh
366+
- run:
367+
name: Build conda packages
368+
no_output_timeout: 30m
369+
command: |
370+
set -ex
371+
packaging/build_wheel.sh
367372
- store_artifacts:
368373
path: dist
369374
- persist_to_workspace:
@@ -379,7 +384,12 @@ jobs:
379384
steps:
380385
- checkout_merge
381386
- designate_upload_channel
382-
- run: packaging/build_conda.sh
387+
- run:
388+
name: Build conda packages
389+
no_output_timeout: 30m
390+
command: |
391+
set -ex
392+
packaging/build_conda.sh
383393
- store_artifacts:
384394
path: /opt/conda/conda-bld/linux-64
385395
- persist_to_workspace:
@@ -397,7 +407,7 @@ jobs:
397407
- designate_upload_channel
398408
- run:
399409
name: Build conda packages
400-
no_output_timeout: 20m
410+
no_output_timeout: 30m
401411
command: |
402412
set -ex
403413
source packaging/windows/internal/vc_install_helper.sh
@@ -424,6 +434,7 @@ jobs:
424434
- designate_upload_channel
425435
- run:
426436
name: Build wheel packages
437+
no_output_timeout: 30m
427438
command: |
428439
set -ex
429440
source packaging/windows/internal/vc_install_helper.sh

0 commit comments

Comments
 (0)