Use debug builds for better test coverage analysis #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload Codecov Report | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
run: | |
runs-on: ubuntu-24.04 | |
name: Build, Test and Report Code Coverage Report | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
repository: "longhao-li/nyaio" | |
ref: "main" | |
- name: configure | |
run: mkdir build && cd build && cmake -DCMAKE_CXX_COMPILER=g++ -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DNYAIO_BUILD_TESTS=ON -DNYAIO_BUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Debug .. | |
- name: build | |
run: cd build && make -j2 | |
- name: test | |
run: cd build && ./nyaio-test | |
- name: install lcov | |
run: sudo apt-get install -y lcov | |
- name: report coverage | |
run: | | |
lcov --ignore-errors usage --capture --directory . --output-file coverage.info --no-external | |
lcov --ignore-errors unused --remove coverage.info 'test/*' --output-file coverage.info | |
lcov --list coverage.info | |
bash <(curl -s https://codecov.io/bash) -f coverage.info -t 8d1827e5-b522-4d49-9511-5e74047b5888 |