Skip to content

Commit d824c5b

Browse files
authored
Merge pull request NVIDIA#425 from vzhurba01/351-trigger
Stop tracking cached files and Jupyter notebook hashes in doc builds
2 parents 1816bb4 + 79de389 commit d824c5b

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
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_bindings/docs/source/overview.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
---
2-
jupytext:
3-
text_representation:
4-
format_name: myst
5-
kernelspec:
6-
display_name: Python 3
7-
name: python3
8-
---
9-
101
# Overview
112

123
<p style="font-size: 14px; color: grey; text-align: right;">by <a

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)