1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add --no-progress to aws s3 [ci skip]

https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html
> --no-progress (boolean) File transfer progress is not displayed. This flag is only applied when the quiet and only-show-errors flags are not provided.
This commit is contained in:
Kazuhiro NISHIYAMA 2019-09-11 09:35:06 +09:00
parent 91ee9584f9
commit 489676bd20
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A
2 changed files with 3 additions and 3 deletions

View file

@ -47,8 +47,8 @@ jobs:
- name: Upload results
run: |
xz -9 lcov-all.info
aws s3 cp lcov-all.info.xz s3://rubyci/coverage/lcov-all-"$GITHUB_SHA".info.xz
aws s3 sync lcov-out s3://rubyci/coverage-latest-html
aws s3 cp lcov-all.info.xz s3://rubyci/coverage/lcov-all-"$GITHUB_SHA".info.xz --no-progress
aws s3 sync lcov-out s3://rubyci/coverage-latest-html --no-progress
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

View file

@ -41,7 +41,7 @@ jobs:
if: github.repository == 'ruby/ruby'
- name: Upload results
run: |
aws s3 sync doc/capi/html/ s3://rubyci/doxygen-latest-html
aws s3 sync doc/capi/html/ s3://rubyci/doxygen-latest-html --no-progress
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}