Skip to content

Commit

Permalink
Fixed gcov version mismatch.
Browse files Browse the repository at this point in the history
████ ███  To request new features or in case this commit breaks something for you,
████ ███  please, create a new github issue with all possible information for me,
▓███▀█▄   but never share your API Keys!
▒▓██ ███
░▒▓█ ███  Signed-off-by: Carles Tubio <[email protected]>
 _________________________________________
/ Hello, WORLD!                           \
|                                         |
\ pssst.. 1.00000000 BTC = 56678.19 EUR.  /
 -----------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
  • Loading branch information
ctubio committed Sep 19, 2024
1 parent 0b385ae commit 3f0c261
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,15 @@ jobs:
- name: coverage
run: |
sudo apt-get install libcapture-tiny-perl libdatetime-perl
lcov -o lcov.info -c -d . --gcov-tool /usr/bin/gcov #> /dev/null 2>&1
lcov -o lcov.info -r lcov.info '/usr/*' '*/include/*' #> /dev/null 2>&1
lcov -l lcov.info | cowsay -nW80 -fdefault
sudo apt-get install libcapture-tiny-perl libdatetime-perl > /dev/null 2>&1
echo GENINFO
geninfo --ignore-errors version,version,empty,empty,usage,usage . #> /dev/null 2>&1
echo GCOV
lcov -o lcov.info -c -d . --gcov-tool /usr/bin/gcov #> /dev/null 2>&1
echo INC
lcov -o lcov.info -r lcov.info '/usr/*' '*/include/*' #> /dev/null 2>&1
echo LCOV
lcov -l lcov.info | cowsay -nW80 -fdefault
- uses: coverallsapp/github-action@main
continue-on-error: true
Expand Down

0 comments on commit 3f0c261

Please sign in to comment.