Skip to content

Commit

Permalink
Change Makefile to treat warnings as errors and use in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jul 31, 2023
1 parent e475b4c commit 9658c26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ popd

rapids-logger "Build Python docs"
pushd python/docs
sphinx-build -b dirhtml . _html
sphinx-build -b text . _text
make dirhtml BUILDDIR=_html
make text BUILDDIR=_text
mkdir -p "${RAPIDS_DOCS_DIR}/rmm/"{html,txt}
mv _html/* "${RAPIDS_DOCS_DIR}/rmm/html"
mv _text/* "${RAPIDS_DOCS_DIR}/rmm/txt"
Expand Down
2 changes: 1 addition & 1 deletion python/docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXOPTS = -n -v -W --keep-going
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build
Expand Down

0 comments on commit 9658c26

Please sign in to comment.