From 064e92c88735381434dddd118f65569297bc336b Mon Sep 17 00:00:00 2001 From: Francois Best Date: Tue, 10 Aug 2021 09:16:19 +0200 Subject: [PATCH] chore: Looks like lcov is already installed --- .github/workflows/cmake.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index bfdd263..bfc55f1 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -23,14 +23,16 @@ jobs: with: submodules: recursive - - name: Install coverage tools - run: | - mkdir -p "$LCOV_ROOT" - wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.14.orig.tar.gz --output-document="$LCOV_ROOT/lcov.tar.gz" - tar xf "$LCOV_ROOT/lcov.tar.gz" --strip-components=1 -C "$LCOV_ROOT" - echo "$LCOV_ROOT/bin" >> $GITHUB_PATH - which lcov - shell: bash + # - name: Install coverage tools + # run: | + # mkdir -p "$LCOV_ROOT" + # wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.14.orig.tar.gz --output-document="$LCOV_ROOT/lcov.tar.gz" + # tar xf "$LCOV_ROOT/lcov.tar.gz" --strip-components=1 -C "$LCOV_ROOT" + # echo "$LCOV_ROOT/bin" >> $GITHUB_PATH + # which lcov + # shell: bash + - name: Info + run: which lcov && lcov --version - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.