question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Build timed out for no apparent reason

See original GitHub issue

Details

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:closed
  • Created 3 years ago
  • Reactions:1
  • Comments:15 (12 by maintainers)

github_iconTop GitHub Comments

1reaction
pllimcommented, Nov 11, 2020

New issue opened at #7659

1reaction
saimncommented, Nov 10, 2020

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found