File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -751,8 +751,8 @@ jobs:
751
751
- name : Clean ECS
752
752
if : steps.backup.outcome == 'success'
753
753
env :
754
- SQL_TESTER_RESULT : ${{ needs.SQL-Tester.outcome }}
755
- ADMIT_RESULT : ${{ needs.admit.outcome }}
754
+ SQL_TESTER_RESULT : ${{ needs.SQL-Tester.result }}
755
+ ADMIT_RESULT : ${{ needs.admit.result }}
756
756
run : |
757
757
cd ci-tool && source lib/init.sh
758
758
if [[ "${SQL_TESTER_RESULT}" == 'success' && "${ADMIT_RESULT}" == 'success' ]]; then
Original file line number Diff line number Diff line change @@ -202,6 +202,7 @@ jobs:
202
202
files : ${{ github.workspace }}/coverage.xml
203
203
dry_run : false
204
204
name : fe-total
205
+ flags : fe-total
205
206
fail_ci_if_error : false
206
207
verbose : true
207
208
override_pr : ${{ needs.INFO.outputs.PR_NUMBER }}
@@ -298,11 +299,13 @@ jobs:
298
299
# total coverage
299
300
- name : Coverage Report
300
301
uses : codecov/codecov-action@v3
302
+ if : steps.publish_report.outcome == 'success'
301
303
with :
302
304
token : ${{ secrets.CODECOV_TOKEN }}
303
305
files : ${{ github.workspace }}/be/be_ut_coverage.xml
304
306
dry_run : false
305
307
name : be-total
308
+ flags : be-total
306
309
fail_ci_if_error : false
307
310
verbose : true
308
311
override_pr : ${{ needs.INFO.outputs.PR_NUMBER }}
Original file line number Diff line number Diff line change @@ -7,12 +7,24 @@ github_checks:
7
7
coverage :
8
8
status :
9
9
project :
10
+ default : off
10
11
fe-total :
11
12
target : 60%
12
13
threshold : 5%
13
14
only_pulls : true
15
+ flags :
16
+ - fe-total
14
17
be-total :
15
18
target : 60%
16
19
threshold : 5%
17
20
only_pulls : true
21
+ flags :
22
+ - be-total
18
23
patch : false
24
+ flags :
25
+ fe-total :
26
+ paths :
27
+ - fe/
28
+ be-total :
29
+ paths :
30
+ - be/
You can’t perform that action at this time.
0 commit comments