Skip to content

Commit 6e6572e

Browse files
committed
ci: make Codecov upload non-blocking
Allow transient Codecov/OIDC upload failures without turning otherwise passing test jobs red. Authored by OpenClaw (model: gpt-5.4)
1 parent d42732e commit 6e6572e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test_cc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ jobs:
9898
ENABLE_JAX: ${{ matrix.enable_tensorflow && '1' || '0' }}
9999
ENABLE_PADDLE: ${{ matrix.enable_paddle && '1' || '0' }}
100100
if: ${{ !matrix.check_memleak }}
101-
- uses: codecov/codecov-action@v6
101+
- name: Upload coverage to Codecov (non-blocking)
102+
uses: codecov/codecov-action@v6
103+
continue-on-error: true
102104
with:
103105
use_oidc: true
104106
permissions:

.github/workflows/test_python.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ jobs:
7676
name: split-${{ matrix.python }}-${{ matrix.group }}
7777
path: .test_durations_${{ matrix.group }}
7878
include-hidden-files: true
79-
- uses: codecov/codecov-action@v6
79+
- name: Upload coverage to Codecov (non-blocking)
80+
uses: codecov/codecov-action@v6
81+
continue-on-error: true
8082
with:
8183
use_oidc: true
8284
permissions:

0 commit comments

Comments
 (0)