missed change in 3d9dd9b1c3f9cc7e9f59c177883dd906c5294e5d (fixes #1092) #212
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: Coverage | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
# inputs: | |
# debug_enabled: | |
# description: 'Run with tmate' | |
# required: false | |
# default: '' | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: checkout | |
uses: actions/checkout@v3 | |
- | |
name: packages | |
run: sudo apt-get update && sudo apt-get install -y libmosquitto1 libmosquitto-dev libssl1.1 libssl-dev | |
- | |
name: build | |
run: cmake -Dcoverage=1 -DBUILD_TESTING=1 . && make | |
- | |
name: test regular | |
run: cd src/lib/ebus/test && ./test_symbol && ./test_filereader && ./test_data && ./test_message | |
- | |
name: test contrib | |
run: cd src/lib/ebus/contrib/test && ./test_contrib | |
# - | |
# name: setup tmate | |
# uses: mxschmitt/[email protected] | |
# if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} | |
# timeout-minutes: 15 | |
# with: | |
# limit-access-to-actor: true | |
- | |
name: test coverage | |
run: ./test_coverage.sh | |
- | |
name: push result | |
uses: codecov/codecov-action@v3 | |
with: | |
name: codecov-umbrella | |
fail_ci_if_error: true | |
verbose: true | |
gcov: true | |
gcov_args: -pb | |
path_to_write_report: ./coverage_report.txt |