Skip to content

Commit

Permalink
Merge branch 'master' into convert_cfiles_to_cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSiebert1 authored Dec 22, 2024
2 parents 3f075a7 + 1c8e29a commit 95ccd8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Test Coverage
jobs:
run-coverage:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:

- uses: actions/checkout@v4
Expand Down Expand Up @@ -43,9 +43,9 @@ jobs:
- name: Generate coverage report
run: |
cd build
lcov --capture --directory . --output-file coverage.info --ignore-errors mismatch
lcov --remove coverage.info '/usr/*' 'boost/*' 'c++11/*' 'boost-test' --output-file coverage.info
lcov --list coverage.info
lcov --capture --directory . --output-file coverage.info
lcov --remove coverage.info '/usr/*' 'boost/*' 'c++11/*' '/home/runner/work/ADOL-C/ADOL-C/ADOL-C/boost-test/*' --output-file coverage.info
lcov --list coverage.info
# Upload coverage report to Codecov
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 95ccd8d

Please sign in to comment.