From d10c0ca69ca09d54f23e02aa6cb108cf8020dfa8 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 11 Mar 2024 09:44:26 -0500 Subject: [PATCH] Revert "Temporarily disable docs errors. (#15265)" This reverts commit c794ce4968b69e0cffc97b3db9496a1cdeab78bc. --- ci/build_docs.sh | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 4b6391be82c..b94c61cc184 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -34,11 +34,6 @@ 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" @@ -71,11 +66,4 @@ if [[ "${RAPIDS_BUILD_TYPE}" != "pull-request" ]]; then fi popd -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 +rapids-upload-docs