From f6d17be965589890e12fde3867bd3a9e44c595df Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Thu, 19 Sep 2024 15:00:57 +0000 Subject: [PATCH] Fixed gcov version mismatch. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ████ ███ 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 _________________________________________ / Hello, WORLD! \ | | \ pssst.. 1.00000000 BTC = 56501.85 EUR. / ----------------------------------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || || --- .github/workflows/test.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db4bb4b68..dfca1dfb9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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,usage,usage,empty . #> /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