Skip to content

Commit 0095b7d

Browse files
committed
Enable parallel build and disable warnings just to measure perf impact
1 parent e5081a5 commit 0095b7d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ci/build_docs.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ popd
4040

4141
rapids-logger "Build Python docs"
4242
pushd docs/cudf
43-
make dirhtml
44-
make text
43+
make dirhtml O="-j 4"
44+
make text O="-j 4"
4545
mkdir -p "${RAPIDS_DOCS_DIR}/cudf/"{html,txt}
4646
mv build/dirhtml/* "${RAPIDS_DOCS_DIR}/cudf/html"
4747
mv build/text/* "${RAPIDS_DOCS_DIR}/cudf/txt"
4848
popd
4949

5050
rapids-logger "Build dask-cuDF Sphinx docs"
5151
pushd docs/dask_cudf
52-
make dirhtml
53-
make text
52+
make dirhtml O="-j 4"
53+
make text O="-j 4"
5454
mkdir -p "${RAPIDS_DOCS_DIR}/dask-cudf/"{html,txt}
5555
mv build/dirhtml/* "${RAPIDS_DOCS_DIR}/dask-cudf/html"
5656
mv build/text/* "${RAPIDS_DOCS_DIR}/dask-cudf/txt"

docs/cudf/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33

44
# You can set these variables from the command line.
5-
SPHINXOPTS = -n -v -W --keep-going
5+
SPHINXOPTS = -n -v
66
SPHINXBUILD = sphinx-build
77
SPHINXPROJ = cudf
88
SOURCEDIR = source

0 commit comments

Comments
 (0)