Skip to content
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

Infra: override RTD build commands #2728

Merged
merged 1 commit into from
Jul 29, 2022

Conversation

hugovk
Copy link
Member

@hugovk hugovk commented Jul 22, 2022

ReadTheDocs now has a beta feature to override the build commands:

Right now, a whole bunch of dependencies are installed that we don't use.

This can be slow especially as some old dependencies are built from source because they don't support modern Python and don't have wheels available (e.g. readthedocs/readthedocs.org#9118).

Instead, we can just make pages and only install the stuff we need.

This speeds up the build "command" time ~2.5 mins to ~2 mins (uploading following build takes ~100s in both cases).


Before

image

Each build step took:

  1. Command time: 2s
  2. Command time: 0s
  3. Command time: 0s
  4. Command time: 0s
  5. Command time: 1s
  6. Command time: 9s
  7. Command time: 33s
  8. Command time: 4s
  9. Command time: 0s
  10. Command time: 98s

Total command time: 147s

Build took 241 seconds (includes upload time)

https://readthedocs.org/projects/pep-previews/builds/17496237/

After

image

  1. Command time: 2s
  2. Command time: 0s
  3. Command time: 0s
  4. Command time: 0s
  5. Command time: 0s
  6. Command time: 115s

Total command time: 117s

Build took 213 seconds (includes upload time)

https://readthedocs.org/projects/pep-previews/builds/17510658/


This also adds an option to build.py so we can output the build files directly in the _readthedocs/html required for RTD.

Also fix render.yml: call like make pages JOBS=$(nproc) instead of make pages -j$(nproc).

@hugovk hugovk added the infra Core infrastructure for building and rendering PEPs label Jul 22, 2022
@hugovk hugovk requested review from AA-Turner, CAM-Gerlach and a team as code owners July 22, 2022 12:05
Comment on lines +39 to +44
parser.add_argument(
"-o",
"--output-dir",
default="build", # synchronise with render.yaml -> deploy step
help="Output directory, relative to root. Default 'build'.",
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kinda out of scope for this PR, but I'm not entirely sure why we're going to all the trouble of manually duplicating the arguments from Sphinx's own build command in the first place, for what appears to be the tiny convenience of typing python build.py instead of python -m sphinx . build for the small subset of users both building locally and not using the Makefile (assuming they remember the bespoke pattern and args to begin with).

The only other thing this file does AFAIK is copy PEP 0 to the root, but the Sphinx extension just does that anyway if not run from build.py by calling the very same function from this file, so it would seem that function should simply be moved into the extension (which would make the latter fully self-contained).

Copy link
Member

@CAM-Gerlach CAM-Gerlach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM at least, thanks @hugovk

@hugovk hugovk merged commit 0f56290 into python:main Jul 29, 2022
@hugovk hugovk deleted the infra-rtd-build.commands branch July 29, 2022 13:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
infra Core infrastructure for building and rendering PEPs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants