Skip to content

Commit 376ee8e

Browse files
authored
[CI] Ignore coverage upload failure (#1897)
* Removed -Z option to codecov uploading step in 'pre-merge' workflow
1 parent 8f7b3b7 commit 376ee8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pre_merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- develop
7-
- releases/v1.0.0
7+
- releases/**
88
pull_request:
99
types:
1010
- opened
@@ -61,7 +61,7 @@ jobs:
6161
# so we use the latest version of codecov uploader binary
6262
curl -Os https://uploader.codecov.io/latest/linux/codecov
6363
chmod +x codecov
64-
./codecov -t ${{ secrets.CODECOV_TOKEN }} --sha $COMMIT_ID -Z true -U $HTTP_PROXY -f .tox/coverage.xml
64+
./codecov -t ${{ secrets.CODECOV_TOKEN }} --sha $COMMIT_ID -U $HTTP_PROXY -f .tox/coverage.xml
6565
Pre-Merge-Integration-Common-Test:
6666
runs-on: [self-hosted, linux, x64, dev]
6767
needs: Pre-Merge-Unit-Test

0 commit comments

Comments
 (0)