From 8a45ae266641d96f30c9336abcd656d5290beaa1 Mon Sep 17 00:00:00 2001 From: Jake Awe <50372925+AyodeAwe@users.noreply.github.com> Date: Tue, 28 Feb 2023 09:10:18 -0600 Subject: [PATCH] Make docs builds less verbose (#12836) This PR adds the `--no-progress` flag to reduce verbose output from the `s3 sync` commands. Authors: - Jake Awe (https://github.com/AyodeAwe) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: https://github.com/rapidsai/cudf/pull/12836 --- ci/build_docs.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 9551d98e9fe..6daedb59733 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -41,7 +41,8 @@ popd if [[ ${RAPIDS_BUILD_TYPE} == "branch" ]]; then - aws s3 sync --delete cpp/doxygen/html "s3://rapidsai-docs/libcudf/${VERSION_NUMBER}/html" - aws s3 sync --delete docs/cudf/_html "s3://rapidsai-docs/cudf/${VERSION_NUMBER}/html" - aws s3 sync --delete docs/cudf/_text "s3://rapidsai-docs/cudf/${VERSION_NUMBER}/txt" + rapids-logger "Upload Docs to S3" + aws s3 sync --no-progress --delete cpp/doxygen/html "s3://rapidsai-docs/libcudf/${VERSION_NUMBER}/html" + aws s3 sync --no-progress --delete docs/cudf/_html "s3://rapidsai-docs/cudf/${VERSION_NUMBER}/html" + aws s3 sync --no-progress --delete docs/cudf/_text "s3://rapidsai-docs/cudf/${VERSION_NUMBER}/txt" fi