Skip to content

Commit

Permalink
Enable parallel build and disable warnings just to measure perf impact
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jan 24, 2024
1 parent e5081a5 commit 0c99a05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ popd

rapids-logger "Build Python docs"
pushd docs/cudf
make dirhtml
make text
make dirhtml O="-j 4"
make text O="-j 4"
mkdir -p "${RAPIDS_DOCS_DIR}/cudf/"{html,txt}
mv build/dirhtml/* "${RAPIDS_DOCS_DIR}/cudf/html"
mv build/text/* "${RAPIDS_DOCS_DIR}/cudf/txt"
popd

rapids-logger "Build dask-cuDF Sphinx docs"
pushd docs/dask_cudf
make dirhtml
make text
make dirhtml O="-j 4"
make text O="-j 4"
mkdir -p "${RAPIDS_DOCS_DIR}/dask-cudf/"{html,txt}
mv build/dirhtml/* "${RAPIDS_DOCS_DIR}/dask-cudf/html"
mv build/text/* "${RAPIDS_DOCS_DIR}/dask-cudf/txt"
Expand Down
2 changes: 1 addition & 1 deletion docs/cudf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#

# You can set these variables from the command line.
SPHINXOPTS = -n -v -W --keep-going
SPHINXOPTS = -n -v
SPHINXBUILD = sphinx-build
SPHINXPROJ = cudf
SOURCEDIR = source
Expand Down

0 comments on commit 0c99a05

Please sign in to comment.