From a605dec0ee63c2fc47f744e96d2a8a2c3fe3242c Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Tue, 17 Dec 2024 14:02:59 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Amend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- .github/workflows/test-createx.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-createx.yml b/.github/workflows/test-createx.yml index a4e807d..6de72f4 100644 --- a/.github/workflows/test-createx.yml +++ b/.github/workflows/test-createx.yml @@ -169,7 +169,13 @@ jobs: # Temporary workaround for: https://github.com/zgosalvez/github-actions-report-lcov/issues/168. - name: Setup LCOV 1.16 - run: sudo apt-get install -y lcov=1.16 + run: | + wget https://github.com/linux-test-project/lcov/archive/refs/tags/v1.16.tar.gz + tar -xzf v1.16.tar.gz + cd lcov-1.16 + sudo make install + lcov --version + sudo rm -rf v1.16.tar.gz lcov-1.16 - name: Verify minimum coverage uses: zgosalvez/github-actions-report-lcov@v4