Skip to content

Commit

Permalink
MOre updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnolet committed Feb 6, 2024
1 parent 9024fb7 commit fd72b23
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
24 changes: 11 additions & 13 deletions ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python)

rapids-mamba-retry install \
--channel "${CPP_CHANNEL}" \
--channel "${PYTHON_CHANNEL}" \
libcuvs \
libcuvs-headers \
cuvs \
raft-dask
# --channel "${PYTHON_CHANNEL}" \
libcuvs #\
# cuvs \

export RAPIDS_VERSION_NUMBER="24.02"
export RAPIDS_DOCS_DIR="$(mktemp -d)"
Expand All @@ -36,13 +34,13 @@ pushd cpp/doxygen
doxygen Doxyfile
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}/cuvs/"{html,txt}
mv _html/* "${RAPIDS_DOCS_DIR}/cuvs/html"
mv _text/* "${RAPIDS_DOCS_DIR}/cuvs/txt"
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}/cuvs/"{html,txt}
#mv _html/* "${RAPIDS_DOCS_DIR}/cuvs/html"
#mv _text/* "${RAPIDS_DOCS_DIR}/cuvs/txt"
#popd

rapids-upload-docs
4 changes: 2 additions & 2 deletions ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set -u

rapids-logger "Downloading artifacts from previous jobs"
CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)
PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python)
#PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python)

RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"}
RAPIDS_COVERAGE_DIR=${RAPIDS_COVERAGE_DIR:-"${PWD}/coverage-results"}
Expand All @@ -30,7 +30,7 @@ rapids-print-env

rapids-mamba-retry install \
--channel "${CPP_CHANNEL}" \
--channel "${PYTHON_CHANNEL}" \
# --channel "${PYTHON_CHANNEL}" \
libcuvs #cuvs

rapids-logger "Check GPU usage"
Expand Down

0 comments on commit fd72b23

Please sign in to comment.