Read the Docs build information Build id: 4022725 Project: anyscale-ray Version: 63431 Commit: e0e530432c9ab64d4644afb0d3b2ba43e25a0a34 Date: 2026-05-18T15:49:00.925597Z State: finished Success: False [rtd-command-info] start-time: 2026-05-18T15:49:29.164517Z, end-time: 2026-05-18T15:49:57.171338Z, duration: 28, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 28% (2933/10436) Updating files: 29% (3027/10436) Updating files: 30% (3131/10436) Updating files: 31% (3236/10436) Updating files: 32% (3340/10436) Updating files: 33% (3444/10436) Updating files: 34% (3549/10436) Updating files: 35% (3653/10436) Updating files: 36% (3757/10436) Updating files: 37% (3862/10436) Updating files: 38% (3966/10436) Updating files: 39% (4071/10436) Updating files: 40% (4175/10436) Updating files: 41% (4279/10436) Updating files: 42% (4384/10436) Updating files: 43% (4488/10436) Updating files: 44% (4592/10436) Updating files: 45% (4697/10436) Updating files: 46% (4801/10436) Updating files: 47% (4905/10436) Updating files: 48% (5010/10436) Updating files: 49% (5114/10436) Updating files: 50% (5218/10436) Updating files: 51% (5323/10436) Updating files: 52% (5427/10436) Updating files: 53% (5532/10436) Updating files: 54% (5636/10436) Updating files: 55% (5740/10436) Updating files: 56% (5845/10436) Updating files: 57% (5949/10436) Updating files: 58% (6053/10436) Updating files: 59% (6158/10436) Updating files: 60% (6262/10436) Updating files: 61% (6366/10436) Updating files: 62% (6471/10436) Updating files: 63% (6575/10436) Updating files: 64% (6680/10436) Updating files: 65% (6784/10436) Updating files: 66% (6888/10436) Updating files: 67% (6993/10436) Updating files: 68% (7097/10436) Updating files: 69% (7201/10436) Updating files: 70% (7306/10436) Updating files: 71% (7410/10436) Updating files: 72% (7514/10436) Updating files: 73% (7619/10436) Updating files: 74% (7723/10436) Updating files: 75% (7827/10436) Updating files: 76% (7932/10436) Updating files: 77% (8036/10436) Updating files: 78% (8141/10436) Updating files: 79% (8245/10436) Updating files: 80% (8349/10436) Updating files: 81% (8454/10436) Updating files: 82% (8558/10436) Updating files: 83% (8662/10436) Updating files: 84% (8767/10436) Updating files: 85% (8871/10436) Updating files: 86% (8975/10436) Updating files: 87% (9080/10436) Updating files: 88% (9184/10436) Updating files: 89% (9289/10436) Updating files: 90% (9393/10436) Updating files: 91% (9497/10436) Updating files: 92% (9602/10436) Updating files: 93% (9706/10436) Updating files: 94% (9810/10436) Updating files: 95% (9915/10436) Updating files: 96% (10019/10436) Updating files: 97% (10123/10436) Updating files: 98% (10228/10436) Updating files: 99% (10332/10436) Updating files: 100% (10436/10436) Updating files: 100% (10436/10436), done. [rtd-command-info] start-time: 2026-05-18T15:49:57.246452Z, end-time: 2026-05-18T15:49:58.107250Z, duration: 0, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/63431/head:external-63431 From https://github.com/ray-project/ray * [new ref] refs/pull/63431/head -> external-63431 [rtd-command-info] start-time: 2026-05-18T15:49:58.875284Z, end-time: 2026-05-18T15:49:59.097947Z, duration: 0, exit-code: 0 git checkout --force e0e530432c9ab64d4644afb0d3b2ba43e25a0a34 Note: switching to 'e0e530432c9ab64d4644afb0d3b2ba43e25a0a34'. 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 e0e5304 bisect step 5: restore real skip script with workarounds [rtd-command-info] start-time: 2026-05-18T15:49:59.179247Z, end-time: 2026-05-18T15:49:59.221157Z, 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), use [.] character classes # for literal dots in regexes (not \.), 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 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 exit 0 fi CHANGED=$(git diff --name-only origin/master...HEAD) if [ -z "$CHANGED" ]; then exit 0 fi DOC_CHANGED= echo "$CHANGED" | grep -qE '^doc/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^python/ray/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^rllib/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^[.]readthedocs[.]yaml$' && DOC_CHANGED=1 if [ -z "$DOC_CHANGED" ]; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" echo "$CHANGED" | sed 's/^/ /' exit 183 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-05-18T15:49:59.298518Z, end-time: 2026-05-18T15:50:02.188185Z, duration: 2, exit-code: 2 if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then 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 exit 0 fi CHANGED=$(git diff --name-only origin/master...HEAD) if [ -z "$CHANGED" ]; then exit 0 fi DOC_CHANGED= echo "$CHANGED" | grep -qE '^doc/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^python/ray/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^rllib/' && DOC_CHANGED=1 echo "$CHANGED" | grep -qE '^[.]readthedocs[.]yaml$' && DOC_CHANGED=1 if [ -z "$DOC_CHANGED" ]; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" echo "$CHANGED" | sed 's/^/ /' exit 183 fi / exit 183 fi : 20: Syntax error: end of file unexpected (expecting "fi")