Skip to content

Commit

Permalink
Merge pull request #2218 from fengzeroz/v2.10
Browse files Browse the repository at this point in the history
ci: rm upload cov
  • Loading branch information
fengzeroz authored Sep 14, 2024
2 parents 904a8dd + 01a3f20 commit 2a92002
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,6 @@ jobs:
cd build
ctest --output-on-failure
- name: create cov report
run: |
sudo apt-get update
sudo apt-get -y install lcov
mkdir -p cov_report
./create_cov_report.sh ut
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./cov_report/
files: ./cov_report/cov-ut.info

pft:
runs-on: ubuntu-20.04
container: ghcr.io/neugates/build:x86_64-v2.10
Expand Down Expand Up @@ -120,20 +104,4 @@ jobs:
pytest -s -v tests/ft/app/"test_azure.py"
else
pytest -s -v tests/ft/metrics/"test_metrics.py"
fi
- name: create cov report
run: |
sudo apt-get update
sudo apt-get -y install lcov
mkdir -p cov_report
./create_cov_report.sh ${{ matrix.plugin }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./cov_report/
files: ./cov_report/cov-${{ matrix.plugin }}.info
fi

0 comments on commit 2a92002

Please sign in to comment.