Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 62 additions & 47 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ name: coverage
env:
COBERTURA_REPORT: cobertura.xml
COVERALLS_REPORT: coveralls.json
JSON_REPORT: report.json
JSON_SUMMARY: summary.json
HTML_REPORT_DIR: html/
COVERAGE_ARTIFACT_NAME: coverage-report
Expand Down Expand Up @@ -36,7 +35,7 @@ jobs:

- name: Install gcovr
run: |
python -m pip install gcovr==8.3
python -m pip install git+https://github.com/gcovr/gcovr.git@8.5

- name: Print versions
run: |
Expand Down Expand Up @@ -87,63 +86,79 @@ jobs:
git config --global --add safe.directory ${GITHUB_WORKSPACE}
cd build
gcovr --root .. \
--verbose \
--include "${GITHUB_WORKSPACE}/include/mimic++(_ext)?" \
--filter "${GITHUB_WORKSPACE}/include/mimic++(_ext)?" \
--exclude-lines-by-pattern "\s*(MIMICPP_ASSERT|assert|util::unreachable)\(" \
--exclude-unreachable-branches \
--exclude-function-lines \
--exclude-noncode-lines \
--exclude-throw-branches \
--decisions \
--calls \
--keep \
--txt \
--cobertura ${{env.COBERTURA_REPORT}} --cobertura-pretty \
--html-nested ${{env.HTML_REPORT_DIR}} --html-title "mimic++ Coverage Report" \
--json-summary ${{env.JSON_SUMMARY}} --json-summary-pretty \
--json ${{env.JSON_REPORT}} --json-pretty

mv ${{env.COBERTURA_REPORT}} ..
mv ${{env.HTML_REPORT_DIR}} ..
mv ${{env.JSON_SUMMARY}} ..
mv ${{env.JSON_REPORT}} ..

# Gathering the coveralls.json in one go with all the other reports results in inconsistent reports.
# see: https://github.com/gcovr/gcovr/issues/1074
- name: Create coveralls report
run: |
cd build
--keep \
--verbose \
--trace-include='.*Templated.*' \
--include "${GITHUB_WORKSPACE}/include" \
--filter "${GITHUB_WORKSPACE}/include" \
--exclude-lines-by-pattern "\s*(MIMICPP_ASSERT|assert|util::unreachable)\(" \
--exclude-unreachable-branches \
--exclude-function-lines \
--exclude-noncode-lines \
--exclude-throw-branches \
--decisions \
--calls \
--merge-lines \
--json-trace-data-source \
--txt \
--json report.1.json --json-pretty \
--cobertura cobertura.1.xml --cobertura-pretty \
--coveralls coveralls.1.json --coveralls-pretty \
--html-nested html/ --html-title "mimic++ Coverage Report" \
--json-summary summary.1.json --json-summary-pretty
gcovr --root .. \
--verbose \
--include "${GITHUB_WORKSPACE}/include/mimic++(_ext)?" \
--filter "${GITHUB_WORKSPACE}/include/mimic++(_ext)?" \
--add-tracefile ../${{env.JSON_REPORT}} \
--coveralls ${{env.COVERALLS_REPORT}} --coveralls-pretty
--verbose \
--trace-include='.*Templated.*' \
--include "${GITHUB_WORKSPACE}/include" \
--filter "${GITHUB_WORKSPACE}/include" \
--exclude-lines-by-pattern "\s*(MIMICPP_ASSERT|assert|util::unreachable)\(" \
--exclude-unreachable-branches \
--exclude-function-lines \
--exclude-noncode-lines \
--exclude-throw-branches \
--decisions \
--calls \
--merge-lines \
--json-trace-data-source \
--add-tracefile report.1.json \
--txt \
--json report.2.json --json-pretty \
--cobertura cobertura.2.xml --cobertura-pretty \
--coveralls coveralls.2.json --coveralls-pretty \
--json-summary summary.2.json --json-summary-pretty

mv ${{env.COVERALLS_REPORT}} ..

- name: Find gcov-files
shell: bash
run: find . -type f -name "*.gcov"
mv report.1.json ..
mv cobertura.1.xml ..
mv coveralls.1.json ..
mv summary.1.json ..
mv ${{env.HTML_REPORT_DIR}} ..
mv report.2.json ..
mv cobertura.2.xml ..
mv coveralls.2.json ..
mv summary.2.json ..

# As of gcovr 8.4, these are *json.gz instead of *.gcov
- name: Upload gcov coverage report artifacts
uses: actions/upload-artifact@v4
with:
name: gcov-files
path: "**/*.gcov"
path: "**/*.json.gz"
if-no-files-found: error

- name: Upload generated report artifacts
uses: actions/upload-artifact@v4
with:
name: ${{env.COVERAGE_ARTIFACT_NAME}}
path: |
${{env.COBERTURA_REPORT}}
${{env.COVERALLS_REPORT}}
${{env.JSON_REPORT}}
${{env.JSON_SUMMARY}}
report.1.json
cobertura.1.xml
coveralls.1.json
summary.1.json
${{env.HTML_REPORT_DIR}}
report.2.json
cobertura.2.xml
coveralls.2.json
summary.2.json
if-no-files-found: error

codacy-report:
Expand All @@ -160,7 +175,7 @@ jobs:
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{secrets.CODACY_PROJECT_TOKEN}}
coverage-reports: ${{env.COBERTURA_REPORT}}
coverage-reports: cobertura.2.xml

codecov-report:
needs: create-coverage-report
Expand All @@ -177,7 +192,7 @@ jobs:
with:
name: $GITHUB_REPOSITORY
token: ${{secrets.CODECOV_TOKEN}}
files: ${{env.COBERTURA_REPORT}}
files: cobertura.2.xml
fail_ci_if_error: true
verbose: true

Expand All @@ -195,7 +210,7 @@ jobs:
uses: coverallsapp/github-action@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
file: ${{env.COVERALLS_REPORT}}
file: coveralls.2.json
# can not use ${{ github.workspace }} here
# see: https://github.com/actions/checkout/issues/785
base-path: "/__w/mimicpp/mimicpp/include"
Expand Down
Loading