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:
parent
91ee9584f9
commit
489676bd20
2 changed files with 3 additions and 3 deletions
4
.github/workflows/coverage.yml
vendored
4
.github/workflows/coverage.yml
vendored
|
@ -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 }}
|
||||
|
|
2
.github/workflows/doxygen.yml
vendored
2
.github/workflows/doxygen.yml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue