From 6f6aa9e217c0d045c89576fbb3f3c5cee4b5bd09 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 3 Jul 2026 22:46:17 +0100 Subject: [PATCH] ci: specify/run only the gcov pluin The default has changed with codecov v5, where all existing plugins are attempted. In practise we only need gcov, which seems to work file. Specify it, saving us the following warning: coverage.py is not installed or can't be found. Initially I tried adding it to the Ubuntu image, only to notice they lack the looked for `coverage.py` executable and instead have `python{version.minor}-coverage.py`. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/448 Signed-off-by: Lucas De Marchi --- .github/workflows/coverage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5132d3c1..56b83dd1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -53,3 +53,4 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: builddir/meson-logs/coverage.xml + plugins: gcov -- 2.47.3