Read the Docs build information Build id: 4119899 Project: anyscale-ray Version: 64188 Commit: 1a65cb6f90918e8efede7e63ae49c1c6a24cc176 Date: 2026-06-17T21:21:10.086371Z State: cancelled Success: False [rtd-command-info] start-time: 2026-06-17T21:21:10.835631Z, end-time: 2026-06-17T21:21:25.239746Z, duration: 14, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 32% (3294/10003) Updating files: 33% (3301/10003) Updating files: 34% (3402/10003) Updating files: 35% (3502/10003) Updating files: 36% (3602/10003) Updating files: 37% (3702/10003) Updating files: 38% (3802/10003) Updating files: 39% (3902/10003) Updating files: 40% (4002/10003) Updating files: 41% (4102/10003) Updating files: 42% (4202/10003) Updating files: 43% (4302/10003) Updating files: 44% (4402/10003) Updating files: 45% (4502/10003) Updating files: 46% (4602/10003) Updating files: 47% (4702/10003) Updating files: 48% (4802/10003) Updating files: 49% (4902/10003) Updating files: 50% (5002/10003) Updating files: 51% (5102/10003) Updating files: 52% (5202/10003) Updating files: 53% (5302/10003) Updating files: 54% (5402/10003) Updating files: 55% (5502/10003) Updating files: 56% (5602/10003) Updating files: 57% (5702/10003) Updating files: 58% (5802/10003) Updating files: 59% (5902/10003) Updating files: 60% (6002/10003) Updating files: 61% (6102/10003) Updating files: 62% (6202/10003) Updating files: 63% (6302/10003) Updating files: 64% (6402/10003) Updating files: 65% (6502/10003) Updating files: 66% (6602/10003) Updating files: 67% (6703/10003) Updating files: 68% (6803/10003) Updating files: 69% (6903/10003) Updating files: 70% (7003/10003) Updating files: 71% (7103/10003) Updating files: 72% (7203/10003) Updating files: 73% (7303/10003) Updating files: 74% (7403/10003) Updating files: 75% (7503/10003) Updating files: 76% (7603/10003) Updating files: 77% (7703/10003) Updating files: 78% (7803/10003) Updating files: 79% (7903/10003) Updating files: 80% (8003/10003) Updating files: 81% (8103/10003) Updating files: 82% (8203/10003) Updating files: 83% (8303/10003) Updating files: 84% (8403/10003) Updating files: 85% (8503/10003) Updating files: 86% (8603/10003) Updating files: 87% (8703/10003) Updating files: 88% (8803/10003) Updating files: 89% (8903/10003) Updating files: 90% (9003/10003) Updating files: 91% (9103/10003) Updating files: 92% (9203/10003) Updating files: 93% (9303/10003) Updating files: 94% (9403/10003) Updating files: 95% (9503/10003) Updating files: 96% (9603/10003) Updating files: 97% (9703/10003) Updating files: 98% (9803/10003) Updating files: 99% (9903/10003) Updating files: 100% (10003/10003) Updating files: 100% (10003/10003), done. [rtd-command-info] start-time: 2026-06-17T21:21:25.320102Z, end-time: 2026-06-17T21:21:27.450675Z, duration: 2, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/64188/head:external-64188 From https://github.com/ray-project/ray * [new ref] refs/pull/64188/head -> external-64188 [rtd-command-info] start-time: 2026-06-17T21:21:28.174852Z, end-time: 2026-06-17T21:21:28.462646Z, duration: 0, exit-code: 0 git checkout --force 1a65cb6f90918e8efede7e63ae49c1c6a24cc176 Note: switching to '1a65cb6f90918e8efede7e63ae49c1c6a24cc176'. 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 1a65cb6 Merge branch 'master' into check_comment_style [rtd-command-info] start-time: 2026-06-17T21:21:28.548818Z, end-time: 2026-06-17T21:21:28.589419Z, 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.10" 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. # 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. 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/ python/ray/ rllib/ .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/ python/ray/ rllib/ .readthedocs.yaml # 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-06-17T21:21:28.687225Z, end-time: 2026-06-17T21:21:32.244176Z, duration: 3, exit-code: 183 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/ python/ray/ rllib/ .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/ python/ray/ rllib/ .readthedocs.yaml No doc-affecting files changed in this PR; skipping Sphinx build. Files changed in PR: src/ray/.claude/rules/cpp-style.md src/ray/.cursor/BUGBOT.md