Skip to content

Commit 532752e

Browse files
committed
Move cached doctree pickles outside of html build
1 parent 2f99bc3 commit 532752e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cuda_bindings/docs/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [[ -z "${SPHINX_CUDA_BINDINGS_VER}" ]]; then
2323
fi
2424

2525
# build the docs (in parallel)
26-
SPHINXOPTS="-j 4" make html
26+
SPHINXOPTS="-j 4 -d build/.doctrees" make html
2727

2828
# for debugging/developing (conf.py), please comment out the above line and
2929
# use the line below instead, as we must build in serial to avoid getting

cuda_core/docs/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [[ -z "${SPHINX_CUDA_CORE_VER}" ]]; then
1919
fi
2020

2121
# build the docs (in parallel)
22-
SPHINXOPTS="-j 4" make html
22+
SPHINXOPTS="-j 4 -d build/.doctrees" make html
2323

2424
# for debugging/developing (conf.py), please comment out the above line and
2525
# use the line below instead, as we must build in serial to avoid getting

cuda_python/docs/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [[ -z "${SPHINX_CUDA_PYTHON_VER}" ]]; then
2323
fi
2424

2525
# build the docs (in parallel)
26-
SPHINXOPTS="-j 4" make html
26+
SPHINXOPTS="-j 4 -d build/.doctrees" make html
2727

2828
# for debugging/developing (conf.py), please comment out the above line and
2929
# use the line below instead, as we must build in serial to avoid getting

0 commit comments

Comments
 (0)