Skip to content

Commit

Permalink
Temporarily disable docs errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Mar 10, 2024
1 parent b08dd9b commit 6ec3c00
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ rapids-mamba-retry install \

export RAPIDS_DOCS_DIR="$(mktemp -d)"

# TODO: Disable hard errors until the docs site is accessible (network problems)
EXITCODE=0
trap "EXITCODE=1" ERR
set +e

rapids-logger "Build CPP docs"
pushd cpp/doxygen
aws s3 cp s3://rapidsai-docs/librmm/html/${RAPIDS_VERSION_NUMBER}/rmm.tag . || echo "Failed to download rmm Doxygen tag"
Expand Down Expand Up @@ -66,4 +71,11 @@ if [[ "${RAPIDS_BUILD_TYPE}" != "pull-request" ]]; then
fi
popd

rapids-upload-docs
if [[ "${EXITCODE}" == "0" ]]; then
rapids-upload-docs
else
rapids-logger "Docs script had errors resulting in exit code $EXITCODE"
fi

# TODO: Disable hard errors until the docs site is accessible (network problems)
exit 0

0 comments on commit 6ec3c00

Please sign in to comment.