8000 CI: CircleCI seems to occasionally time out, increase the limit by seberg · Pull Request #18349 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: CircleCI seems to occasionally time out, increase the limit #18349

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CI: CircleCI seems to occasionally time out, increase the limit
CircleCI seems to default to a 10 minute timeout on no output,
simply increase it to 30 minutes to ensure the build should
succeed.
It seems the build does take 25+ minutes (maybe depending on the
machine it runs on). Technically, 30 minutes is probably more than
necessary, since there is a print in the middle, but that is
just a warning that could go away at some point.
  • Loading branch information
seberg committed Feb 6, 2021
commit 9e9d3e53a7b57bbbff03c214f6563b47a361ae9b
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
55AF Expand Up @@ -62,6 +62,7 @@ jobs:

- run:
name: build devdocs
no_output_timeout: 30m
command: |
. venv/bin/activate
cd doc
Expand Down
0