From c2eb39c430f231e0d1d90911ac947722359edcc0 Mon Sep 17 00:00:00 2001 From: BradReesWork Date: Wed, 25 Oct 2023 12:07:47 -0400 Subject: [PATCH] added "-v" option to shpinx build and removed external packages in "Downloading artifacts from previous jobs" section --- ci/build_docs.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 7704c3f2f11..856d59b50a8 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -29,8 +29,7 @@ rapids-mamba-retry install \ cugraph-pyg \ cugraph-service-server \ cugraph-service-client \ - libcugraph_etl \ - pylibwholegraph + libcugraph_etl # This command installs `cugraph-dgl` without its dependencies # since this package can currently only run in `11.6` CTK environments @@ -62,8 +61,8 @@ pushd docs/cugraph # Ensure cugraph is importable, since sphinx does not report details about this # type of failure well. python -c "import cugraph; print(f'Using cugraph: {cugraph}')" -sphinx-build -b dirhtml source _html -sphinx-build -b text source _text +sphinx-build -v -b dirhtml source _html +sphinx-build -v -b text source _text mkdir -p "${RAPIDS_DOCS_DIR}/cugraph/"{html,txt} mv _html/* "${RAPIDS_DOCS_DIR}/cugraph/html" mv _text/* "${RAPIDS_DOCS_DIR}/cugraph/txt"