Read the Docs build information Build id: 4319039 Project: anyscale-ray Version: master Commit: b0344e74dd389bb63552d4f9696124df69ed5299 Date: 2026-08-14T10:07:05.553373Z State: cancelled Success: False [rtd-command-info] start-time: 2026-08-14T10:07:06.397054Z, end-time: 2026-08-14T10:07:18.009597Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 38% (4030/10337) Updating files: 39% (4032/10337) Updating files: 40% (4135/10337) Updating files: 41% (4239/10337) Updating files: 42% (4342/10337) Updating files: 43% (4445/10337) Updating files: 44% (4549/10337) Updating files: 45% (4652/10337) Updating files: 46% (4756/10337) Updating files: 47% (4859/10337) Updating files: 48% (4962/10337) Updating files: 49% (5066/10337) Updating files: 50% (5169/10337) Updating files: 51% (5272/10337) Updating files: 52% (5376/10337) Updating files: 53% (5479/10337) Updating files: 54% (5582/10337) Updating files: 55% (5686/10337) Updating files: 56% (5789/10337) Updating files: 57% (5893/10337) Updating files: 58% (5996/10337) Updating files: 59% (6099/10337) Updating files: 60% (6203/10337) Updating files: 61% (6306/10337) Updating files: 62% (6409/10337) Updating files: 63% (6513/10337) Updating files: 64% (6616/10337) Updating files: 65% (6720/10337) Updating files: 66% (6823/10337) Updating files: 67% (6926/10337) Updating files: 68% (7030/10337) Updating files: 69% (7133/10337) Updating files: 70% (7236/10337) Updating files: 71% (7340/10337) Updating files: 72% (7443/10337) Updating files: 73% (7547/10337) Updating files: 74% (7650/10337) Updating files: 75% (7753/10337) Updating files: 76% (7857/10337) Updating files: 77% (7960/10337) Updating files: 78% (8063/10337) Updating files: 79% (8167/10337) Updating files: 80% (8270/10337) Updating files: 81% (8373/10337) Updating files: 82% (8477/10337) Updating files: 83% (8580/10337) Updating files: 84% (8684/10337) Updating files: 85% (8787/10337) Updating files: 86% (8890/10337) Updating files: 87% (8994/10337) Updating files: 88% (9097/10337) Updating files: 89% (9200/10337) Updating files: 90% (9304/10337) Updating files: 91% (9407/10337) Updating files: 92% (9511/10337) Updating files: 93% (9614/10337) Updating files: 94% (9717/10337) Updating files: 95% (9821/10337) Updating files: 96% (9924/10337) Updating files: 97% (10027/10337) Updating files: 98% (10131/10337) Updating files: 99% (10234/10337) Updating files: 100% (10337/10337) Updating files: 100% (10337/10337), done. [rtd-command-info] start-time: 2026-08-14T10:07:18.091110Z, end-time: 2026-08-14T10:07:19.455615Z, duration: 1, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 refs/heads/master:refs/remotes/origin/master [rtd-command-info] start-time: 2026-08-14T10:07:20.194171Z, end-time: 2026-08-14T10:07:21.441778Z, duration: 1, exit-code: 0 git checkout --force origin/master Note: switching to 'origin/master'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at b0344e7 [ci] Document ci/ray_ci/doc and the doc pipeline's shared surfaces (#65391) [rtd-command-info] start-time: 2026-08-14T10:07:21.522306Z, end-time: 2026-08-14T10:07:21.556836Z, duration: 0, exit-code: 0 cat .readthedocs.yaml # .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-24.04 tools: python: "3.11" jobs: # On PR builds, skip the Sphinx build when the PR doesn't touch any # files that affect documentation output. Reduces queue pressure on # the shared RTD build slots when several PRs are open at once. # Tag/branch builds (master, stable, etc.) always run. # The guard matches doc/ but excludes doc/.claude/ (Claude Code skills # and agent files), which never participate in the Sphinx build, so a # PR that changes only those paths skips the build instead of running one. # Code sources (python/ray/, rllib/) are intentionally not matched, so a # code-only PR skips this PR preview. The RTD PR check is not a required # merge gate, and the post-merge master build and the Buildkite doc_build # still render docstring-driven API-reference changes. This trades a # non-gating premerge preview for less pressure on the shared RTD slots. # See https://docs.readthedocs.com/platform/stable/guides/build/skip-build.html # # Some constructs are avoided deliberately because RTD's job runner # silently drops scripts that contain them: use echo (not printf # with a backslash-escape format string), avoid backslash escapes # in general, and keep shell comments out of this block so that # backticks/$() inside comments don't confuse the preprocessor. # The runner also strips the surrounding single quotes from arguments, # so use git's :! exclude shorthand rather than :(exclude): unquoted # parentheses reach /bin/sh (dash) and abort the script with a syntax error. post_checkout: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ ':!doc/.claude/' .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ ':!doc/.claude/' .readthedocs.yaml # Override the html build step so every build runs a full clean Sphinx # build via the doc/Makefile html target, for PR (external) previews and # branch/tag builds alike. # # The incremental-from-master-cache path added in #64277 is disabled for # now. On every PR preview Sphinx discards the restored cache because a # config value differs between the environment that produced the cache and # the RTD build environment, so it rebuilds all documents anyway while # still paying the cache download and extract cost, and it risks a second # clean rebuild when the incremental leg trips a warning. A clean build is # faster and lower-variance in practice today. Re-enable the incremental # path only once cache reuse is confirmed (Sphinx logs "N changed" rather # than "NNNN added") and stale-artifact pruning lands for PRs that rename # or delete sources. The rtd and rtd-fallback Makefile targets and # doc/load_doc_cache.py stay in the tree for that re-enable. build: html: - | make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/source/conf.py fail_on_warning: true # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: doc/requirements-doc.lock.txt [rtd-command-info] start-time: 2026-08-14T10:07:21.629501Z, end-time: 2026-08-14T10:07:21.663787Z, duration: 0, exit-code: 0 if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ ':!doc/.claude/' .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ ':!doc/.claude/' .readthedocs.yaml Not a PR build (version type: branch); building docs.