From c2dc553543c5f2fa99f45b99c1b1f6dce30ce443 Mon Sep 17 00:00:00 2001 From: Moritz Wirger Date: Wed, 12 Feb 2025 21:09:21 +0100 Subject: [PATCH] Install latest lcov version to fix it --- .github/workflows/build.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5440010..2afe65c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,15 +27,14 @@ jobs: - name: Set up dependencies run: | sudo apt-get update -qq - sudo apt-get install -y gcc g++ lcov doxygen graphviz python3-yaml + sudo apt-get install -y gcc g++ doxygen graphviz python3-yaml - # - name: Install CodeCov and LCOV - # run: | - # sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-7 90 - # wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.13.orig.tar.gz - # tar xf lcov_1.13.orig.tar.gz - # make -C lcov-1.13 "PREFIX=${HOME}/.local" install - # echo "${HOME}/.local/bin" >> $GITHUB_PATH + - name: Install CodeCov and LCOV + run: | + git clone https://github.com/linux-test-project/lcov.git + cd lcov + sudo make install + cd .. - name: Show tool versions run: |