From 17679c03e121d83954156f9e6e5a2dafee075a89 Mon Sep 17 00:00:00 2001 From: Lishen Yao Date: Tue, 14 Mar 2023 10:49:51 +0800 Subject: [PATCH] Disable code coverage and codecov report --- .github/workflows/bk-ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/bk-ci.yml b/.github/workflows/bk-ci.yml index 17e737a1471..76d4b506eed 100644 --- a/.github/workflows/bk-ci.yml +++ b/.github/workflows/bk-ci.yml @@ -178,13 +178,7 @@ jobs: if [[ ! -z "${{ matrix.module }}" ]]; then projects_list="-pl ${{ matrix.module }}" fi - mvn -Pcode-coverage -B -nsu $projects_list verify ${{ matrix.test_args }} - - - name: Upload coverage to Codecov - if: ${{ matrix.flag }} != 'shell' - uses: codecov/codecov-action@v3 - with: - flags: ${{ matrix.flag }} + mvn -B -nsu $projects_list verify ${{ matrix.test_args }} - name: Aggregates all test reports to ./test-reports and ./surefire-reports directories if: ${{ always() }}