From bd3902bc6b6d8f1a51d32b660a9ab9008776e1cb Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Thu, 6 Jun 2024 20:59:17 -0700 Subject: [PATCH] Remove text builds of documentation (#2354) This PR removes text builds of the documentation, which we do not currently use for anything. Contributes to https://github.com/rapidsai/build-planning/issues/71. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Ben Frederickson (https://github.com/benfred) - James Lamb (https://github.com/jameslamb) URL: https://github.com/rapidsai/raft/pull/2354 --- ci/build_docs.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 9605b52f8b..f0313f27d1 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -41,10 +41,8 @@ popd rapids-logger "Build Python docs" pushd docs sphinx-build -b dirhtml source _html -sphinx-build -b text source _text -mkdir -p "${RAPIDS_DOCS_DIR}/raft/"{html,txt} +mkdir -p "${RAPIDS_DOCS_DIR}/raft/"html mv _html/* "${RAPIDS_DOCS_DIR}/raft/html" -mv _text/* "${RAPIDS_DOCS_DIR}/raft/txt" popd rapids-upload-docs