From: Emil Velikov Date: Fri, 3 Jul 2026 21:46:17 +0000 (+0100) Subject: ci: specify/run only the gcov pluin X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f6aa9e217c0d045c89576fbb3f3c5cee4b5bd09;p=thirdparty%2Fkmod.git 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 --- 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