9e1ed0720b
PiperOrigin-RevId: 822102488 Change-Id: I223757e80c00421c2ea37c3b30718c93b0a3cee8
32 lines
989 B
YAML
32 lines
989 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
version: 2
|
|
|
|
# TODO(robotics-simulation): pdf format fails to build on readthedocs
|
|
# formats:
|
|
# - pdf
|
|
|
|
build:
|
|
os: ubuntu-24.04
|
|
tools:
|
|
python: "3.12"
|
|
jobs:
|
|
create_environment:
|
|
- asdf plugin add uv
|
|
- asdf install uv latest
|
|
- asdf global uv latest
|
|
- uv venv $READTHEDOCS_VIRTUALENV_PATH
|
|
- UV_PROJECT_ENVIRONMENT=$READTHEDOCS_VIRTUALENV_PATH uv pip install -r doc/requirements.txt
|
|
# replace mujoco.mjx.third_party.mujoco_warp import paths with mujoco_warp
|
|
- |
|
|
find mjx/mujoco/mjx/third_party/mujoco_warp -type f -exec sed -i 's/mujoco\.mjx\.third_party\.mujoco_warp/mujoco_warp/g' {} \;
|
|
- UV_PROJECT_ENVIRONMENT=$READTHEDOCS_VIRTUALENV_PATH uv pip install mjx/mujoco/mjx/third_party/mujoco_warp
|
|
install:
|
|
- "true" # skip
|
|
|
|
sphinx:
|
|
builder: html
|
|
configuration: doc/conf.py
|
|
fail_on_warning: false
|