Read the Docs build information Build id: 4174532 Project: anyscale-ray Version: 62185 Commit: 757efc87495698931d6b9b2db33264106aff0ce3 Date: 2026-07-04T07:50:46.927104Z State: cancelled Success: False [rtd-command-info] start-time: 2026-07-04T07:50:48.369848Z, end-time: 2026-07-04T07:51:00.200896Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 42% (4316/10078) Updating files: 43% (4334/10078) Updating files: 44% (4435/10078) Updating files: 45% (4536/10078) Updating files: 46% (4636/10078) Updating files: 47% (4737/10078) Updating files: 48% (4838/10078) Updating files: 49% (4939/10078) Updating files: 50% (5039/10078) Updating files: 51% (5140/10078) Updating files: 52% (5241/10078) Updating files: 53% (5342/10078) Updating files: 54% (5443/10078) Updating files: 55% (5543/10078) Updating files: 56% (5644/10078) Updating files: 57% (5745/10078) Updating files: 58% (5846/10078) Updating files: 59% (5947/10078) Updating files: 60% (6047/10078) Updating files: 61% (6148/10078) Updating files: 62% (6249/10078) Updating files: 63% (6350/10078) Updating files: 64% (6450/10078) Updating files: 65% (6551/10078) Updating files: 66% (6652/10078) Updating files: 67% (6753/10078) Updating files: 68% (6854/10078) Updating files: 69% (6954/10078) Updating files: 70% (7055/10078) Updating files: 71% (7156/10078) Updating files: 72% (7257/10078) Updating files: 73% (7357/10078) Updating files: 74% (7458/10078) Updating files: 75% (7559/10078) Updating files: 76% (7660/10078) Updating files: 77% (7761/10078) Updating files: 78% (7861/10078) Updating files: 79% (7962/10078) Updating files: 80% (8063/10078) Updating files: 81% (8164/10078) Updating files: 82% (8264/10078) Updating files: 83% (8365/10078) Updating files: 84% (8466/10078) Updating files: 85% (8567/10078) Updating files: 86% (8668/10078) Updating files: 87% (8768/10078) Updating files: 88% (8869/10078) Updating files: 89% (8970/10078) Updating files: 90% (9071/10078) Updating files: 91% (9171/10078) Updating files: 92% (9272/10078) Updating files: 93% (9373/10078) Updating files: 94% (9474/10078) Updating files: 95% (9575/10078) Updating files: 96% (9675/10078) Updating files: 97% (9776/10078) Updating files: 98% (9877/10078) Updating files: 99% (9978/10078) Updating files: 100% (10078/10078) Updating files: 100% (10078/10078), done. [rtd-command-info] start-time: 2026-07-04T07:51:00.284851Z, end-time: 2026-07-04T07:51:00.934222Z, duration: 0, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/62185/head:external-62185 From https://github.com/ray-project/ray * [new ref] refs/pull/62185/head -> external-62185 [rtd-command-info] start-time: 2026-07-04T07:51:01.713115Z, end-time: 2026-07-04T07:51:01.961627Z, duration: 0, exit-code: 0 git checkout --force 757efc87495698931d6b9b2db33264106aff0ce3 Note: switching to '757efc87495698931d6b9b2db33264106aff0ce3'. 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 757efc8 fix(raylet): two-phase iteration in owner-death lease cleanup [rtd-command-info] start-time: 2026-07-04T07:51:02.068339Z, end-time: 2026-07-04T07:51:02.144763Z, 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. # 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/' 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/ ':!doc/.claude/' python/ray/ rllib/ .readthedocs.yaml # Override the html build step. On PR (external) builds, build incrementally # from the latest master doc cache, falling back to a clean build # (rtd-fallback) if it fails. PRs that delete or move doc sources skip the # incremental path: the restored cache can't prune the stale pages/stubs they # leave behind, and a clean rename wouldn't trip a warning to force the # fallback. The prune-on-restore fix is tracked in DOC-1314. Branch/tag builds # (master, stable, release tags) always do a full clean build so published # output is never stale. Targets live in doc/Makefile (rtd, rtd-fallback, html). build: html: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then if ! git diff --quiet --no-renames --diff-filter=D origin/master...HEAD -- doc/source/ 2>/dev/null; then echo "PR deletes or moves doc sources; the incremental cache cannot prune their stale pages, so building clean (DOC-1314)." make -C doc rtd-fallback HTMLDIR="$READTHEDOCS_OUTPUT/html" else echo "PR build; attempting incremental build from the master doc cache." make -C doc rtd HTMLDIR="$READTHEDOCS_OUTPUT/html" || make -C doc rtd-fallback HTMLDIR="$READTHEDOCS_OUTPUT/html" fi else echo "Branch/tag build; running a full clean build." make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" fi # 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-07-04T07:51:02.274600Z, end-time: 2026-07-04T07:51:06.073764Z, 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/ ':!doc/.claude/' 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/ ':!doc/.claude/' python/ray/ rllib/ .readthedocs.yaml No doc-affecting files changed in this PR; skipping Sphinx build. Files changed in PR: src/ray/raylet/node_manager.cc src/ray/raylet/tests/BUILD.bazel src/ray/raylet/tests/node_manager_test.cc src/ray/raylet/tests/util.h