Read the Docs build information Build id: 4134265 Project: anyscale-ray Version: 63929 Commit: 0c78dbffcd4eca0e4ac7a4b4b62b5af7bda3a503 Date: 2026-06-22T21:35:36.915991Z State: cancelled Success: False [rtd-command-info] start-time: 2026-06-22T21:36:47.276454Z, end-time: 2026-06-22T21:37:00.585813Z, duration: 13, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 41% (4139/10025) Updating files: 42% (4211/10025) Updating files: 43% (4311/10025) Updating files: 44% (4411/10025) Updating files: 45% (4512/10025) Updating files: 46% (4612/10025) Updating files: 47% (4712/10025) Updating files: 48% (4812/10025) Updating files: 49% (4913/10025) Updating files: 50% (5013/10025) Updating files: 51% (5113/10025) Updating files: 52% (5213/10025) Updating files: 53% (5314/10025) Updating files: 54% (5414/10025) Updating files: 55% (5514/10025) Updating files: 56% (5614/10025) Updating files: 57% (5715/10025) Updating files: 58% (5815/10025) Updating files: 59% (5915/10025) Updating files: 60% (6015/10025) Updating files: 61% (6116/10025) Updating files: 62% (6216/10025) Updating files: 63% (6316/10025) Updating files: 64% (6416/10025) Updating files: 65% (6517/10025) Updating files: 66% (6617/10025) Updating files: 67% (6717/10025) Updating files: 68% (6817/10025) Updating files: 69% (6918/10025) Updating files: 70% (7018/10025) Updating files: 71% (7118/10025) Updating files: 72% (7218/10025) Updating files: 73% (7319/10025) Updating files: 74% (7419/10025) Updating files: 75% (7519/10025) Updating files: 76% (7619/10025) Updating files: 77% (7720/10025) Updating files: 78% (7820/10025) Updating files: 79% (7920/10025) Updating files: 80% (8020/10025) Updating files: 81% (8121/10025) Updating files: 82% (8221/10025) Updating files: 83% (8321/10025) Updating files: 84% (8421/10025) Updating files: 85% (8522/10025) Updating files: 86% (8622/10025) Updating files: 87% (8722/10025) Updating files: 88% (8822/10025) Updating files: 89% (8923/10025) Updating files: 90% (9023/10025) Updating files: 91% (9123/10025) Updating files: 92% (9223/10025) Updating files: 93% (9324/10025) Updating files: 94% (9424/10025) Updating files: 95% (9524/10025) Updating files: 96% (9624/10025) Updating files: 97% (9725/10025) Updating files: 98% (9825/10025) Updating files: 99% (9925/10025) Updating files: 100% (10025/10025) Updating files: 100% (10025/10025), done. [rtd-command-info] start-time: 2026-06-22T21:37:00.669884Z, end-time: 2026-06-22T21:37:02.880817Z, duration: 2, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/63929/head:external-63929 From https://github.com/ray-project/ray * [new ref] refs/pull/63929/head -> external-63929 [rtd-command-info] start-time: 2026-06-22T21:37:03.661569Z, end-time: 2026-06-22T21:37:04.498945Z, duration: 0, exit-code: 0 git checkout --force 0c78dbffcd4eca0e4ac7a4b4b62b5af7bda3a503 Note: switching to '0c78dbffcd4eca0e4ac7a4b4b62b5af7bda3a503'. 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 0c78dbf Clean up - revert flag [rtd-command-info] start-time: 2026-06-22T21:37:04.577462Z, end-time: 2026-06-22T21:37:04.617588Z, 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: None, end-time: None, duration: None, exit-code: None 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