From da2fc25c94dfd57eb10cddf7c0099d3ac283ddf2 Mon Sep 17 00:00:00 2001 From: Jake Awe Date: Wed, 18 Jan 2023 14:13:19 -0600 Subject: [PATCH 1/2] s3 sync only show errors --- ci/build_docs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index d5b6bfa86..559e95e75 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -39,7 +39,7 @@ popd if [[ "${RAPIDS_BUILD_TYPE}" == "branch" ]]; then rapids-logger "Upload Docs to S3" - aws s3 sync --delete doxygen/html "s3://rapidsai-docs/librmm/${VERSION_NUMBER}/html" - aws s3 sync --delete python/docs/_html "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/html" - aws s3 sync --delete python/docs/_text "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/txt" + aws s3 sync --only-show-errors --delete doxygen/html "s3://rapidsai-docs/librmm/${VERSION_NUMBER}/html" + aws s3 sync --only-show-errors --delete python/docs/_html "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/html" + aws s3 sync --only-show-errors --delete python/docs/_text "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/txt" fi From 2583de4376d85d96c9c6d1ee73de6fa3c9702f43 Mon Sep 17 00:00:00 2001 From: Jake Awe <50372925+AyodeAwe@users.noreply.github.com> Date: Wed, 18 Jan 2023 14:27:38 -0600 Subject: [PATCH 2/2] Update ci/build_docs.sh Co-authored-by: AJ Schmidt --- ci/build_docs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 559e95e75..89a85fad2 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -39,7 +39,7 @@ popd if [[ "${RAPIDS_BUILD_TYPE}" == "branch" ]]; then rapids-logger "Upload Docs to S3" - aws s3 sync --only-show-errors --delete doxygen/html "s3://rapidsai-docs/librmm/${VERSION_NUMBER}/html" - aws s3 sync --only-show-errors --delete python/docs/_html "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/html" - aws s3 sync --only-show-errors --delete python/docs/_text "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/txt" + aws s3 sync --no-progress --delete doxygen/html "s3://rapidsai-docs/librmm/${VERSION_NUMBER}/html" + aws s3 sync --no-progress --delete python/docs/_html "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/html" + aws s3 sync --no-progress --delete python/docs/_text "s3://rapidsai-docs/rmm/${VERSION_NUMBER}/txt" fi