Build timed out for no apparent reason
See original GitHub issueDetails
- Read the Docs project URL: https://readthedocs.org/projects/astropy/
- Build URL (if applicable): https://readthedocs.org/projects/astropy/builds/12279956/ (just one of many, as example)
- Read the Docs username (if applicable): pllim
Expected Result
Build to happen and succeed.
Actual Result
Timed out after about 1500s but we do not even see the sphinx-build
command being run. The logs ends at:
# User's Sphinx configurations
language_user = globals().get('language', None)
latex_engine_user = globals().get('latex_engine', None)
latex_elements_user = globals().get('latex_elements', None)
# Remove this once xindy gets installed in Docker image and XINDYOPS
# env variable is supported
# https://github.com/rtfd/readthedocs-docker-images/pull/98
latex_use_xindy = False
chinese = any([
language_user in ('zh_CN', 'zh_TW'),
project_language in ('zh_CN', 'zh_TW'),
])
japanese = any([
language_user == 'ja',
project_language == 'ja',
])
if chinese:
latex_engine = latex_engine_user or 'xelatex'
latex_elements_rtd = {
'preamble': '\\usepackage[UTF8]{ctex}\n',
}
latex_elements = latex_elements_user or latex_elements_rtd
elif japanese:
latex_engine = latex_engine_user or 'platex'
# Make sure our build directory is always excluded
exclude_patterns = globals().get('exclude_patterns', [])
exclude_patterns.extend(['_build'])
We are hoping perhaps you can inspect the server log and give us more clue on how to fix this. Thank you very much!
xref astropy/astropy#10998
cc @saimn
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:15 (12 by maintainers)
Top Results From Across the Web
can't git-push to heroku due to "Build stream timed out"
This is just an specific workaround. The solution is to wait for Heroku to fix the build process. – Lomefin. Oct 27, 2016...
Read more >1368581 – start-build timeout when started with --follow
I was running reliability tests on this cluster and due to this timeout issue my tests kept creating builds, because of that It...
Read more >SwiftUI Preview "Timed out waiting… | Apple Developer Forums
It builds successfully, spins for thirty seconds, then throws an error: TimeoutError: Timed out waiting for a thunk to build after 30.0 seconds....
Read more >Site build has started timing out with no changes - Support
Overnight, our site has stopped building due to a timeout. I've tried re-deploying successful builds from yesterday, and they are also timing out...
Read more >Common Build Problems - Travis CI Docs
Our builds have a global timeout and a timeout that's based on the output. If no output is received from a build for...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
New issue opened at #7659
Maybe just one more thing, @humitos : the output of
sphinx.ext.duration
does not show on RTD, not sure why, but it would be great to have it.