Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

```bash
ci/build.py --docker-registry mxnetci --platform ubuntu_cpu_python /work/runtime_functions.sh build_python_docs


```

Troubleshooting - You can interact with the Docker container, make changes, and force a rebuild of the docs. 

...

# ci/docker/runtime_functions.sh build_python_docs

```

or directly running

```

pushd docs/python_docs

eval "$(/work/miniconda/bin/conda shell.bash hook)"

conda env create -f environment.yml -p /work/conda_env

conda activate /work/conda_env

pip install themes/mx-theme

pip install -e /work/mxnet/python --user

pushd python

make clean

make html EVAL=0

```

To fully emulate the Jenkinsfile that generates the website, you may call each runtime_function for each docs package and for the Jekyll site then deploy the contents of your `docs/_build/` folder.

...