summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-11 09:35:06 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-11 09:35:06 +0900
commit489676bd2049c0a8c9949bf09d3dfb2730a29736 (patch)
tree9ab45a2c2b9fc52fdb2093baaef0dc10109eb1e1 /.github
parent91ee9584f9a3e8b8e5e0e9c2f1f2b229ca10323e (diff)
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage.yml4
-rw-r--r--.github/workflows/doxygen.yml2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index f2998047a0..a5d9a2ac1f 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -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 }}
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
index 890f50367c..8c50967f5e 100644
--- a/.github/workflows/doxygen.yml
+++ b/.github/workflows/doxygen.yml
@@ -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 }}