mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 16:57:10 +00:00
CI: Add automatic retries to codecov upload action (#91857)
This commit is contained in:
parent
228233ae0c
commit
20a42c65cf
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
@ -1102,12 +1102,20 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
- name: Upload coverage to Codecov (full coverage)
|
- name: Upload coverage to Codecov (full coverage)
|
||||||
if: needs.info.outputs.test_full_suite == 'true'
|
if: needs.info.outputs.test_full_suite == 'true'
|
||||||
uses: codecov/codecov-action@v3.1.3
|
uses: Wandalen/wretry.action@v1.0.36
|
||||||
with:
|
with:
|
||||||
|
action: codecov/codecov-action@v3.1.3
|
||||||
|
with: |
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
flags: full-suite
|
flags: full-suite
|
||||||
|
attempt_limit: 5
|
||||||
|
attempt_delay: 30000
|
||||||
- name: Upload coverage to Codecov (partial coverage)
|
- name: Upload coverage to Codecov (partial coverage)
|
||||||
if: needs.info.outputs.test_full_suite == 'false'
|
if: needs.info.outputs.test_full_suite == 'false'
|
||||||
uses: codecov/codecov-action@v3.1.3
|
uses: Wandalen/wretry.action@v1.0.36
|
||||||
with:
|
with:
|
||||||
|
action: codecov/codecov-action@v3.1.3
|
||||||
|
with: |
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
|
attempt_limit: 5
|
||||||
|
attempt_delay: 30000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user