Skip to content

Commit 4299608

Browse files
authored
Revert "Remove HTML builds of librmm (#1415)" (#1604)
This reverts commit 77b5500. See: rapidsai/docs#517 (review) We need to have librmm docs published in order to enable cross-linking of librmm from libcudf docs. From discussion with @raydouglass, we don't need to link to them publicly on docs.rapids.ai, as they are already included in the rmm docs (both C++ and Python). The librmm docs will just be used to cross-reference from libcudf docs. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Ray Douglass (https://github.com/raydouglass) - Vyas Ramasubramani (https://github.com/vyasr) URL: #1604
1 parent b8b67f8 commit 4299608

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ci/build_docs.sh

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export RAPIDS_DOCS_DIR="$(mktemp -d)"
3333
rapids-logger "Build CPP docs"
3434
pushd doxygen
3535
doxygen Doxyfile
36+
mkdir -p "${RAPIDS_DOCS_DIR}/librmm/html"
37+
mv html/* "${RAPIDS_DOCS_DIR}/librmm/html"
3638
popd
3739

3840
rapids-logger "Build Python docs"

doxygen/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ IGNORE_PREFIX =
11351135
# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
11361136
# The default value is: YES.
11371137

1138-
GENERATE_HTML = NO
1138+
GENERATE_HTML = YES
11391139

11401140
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
11411141
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of

0 commit comments

Comments
 (0)