Skip to content

Commit

Permalink
updatge
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Mar 14, 2023
1 parent 227b8f3 commit ac521c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

jobs:
gcc-coverage-report:
name: gcc coverage report
runs-on: kuzu-self-hosted-testing
name: code coverage report
runs-on: code-coverage
steps:
- uses: actions/checkout@v3

Expand All @@ -24,7 +24,9 @@ jobs:
run: CC=gcc CXX=g++ make lcov NUM_THREADS=32

- name: Generate coverage report
run: lcov -c -d ./ --no-external -o cover.info
run: |
lcov -c -d ./ --no-external -o cover.info &&\
lcov --remove cover.info $(< .github/workflows/lcov_exclude) -o cover.info
- name: Upload coverage report
uses: codecov/codecov-action@v3
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lcov_exclude
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*/third_party/*
*/_deps/*
*/test/*
*/external/*

0 comments on commit ac521c7

Please sign in to comment.