From: Nathan Moinvaziri Date: Wed, 1 Jan 2025 22:41:27 +0000 (-0800) Subject: Don't pin gcovr version any longer. #1840 X-Git-Tag: 2.2.4~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdfe70070c841d3a4f68924001de45ef5899661e;p=thirdparty%2Fzlib-ng.git Don't pin gcovr version any longer. #1840 --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 88ac0221..b6c5c152 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -740,7 +740,7 @@ jobs: run: | python3 -u -m venv ${{ matrix.build-dir || '.' }}/venv source ${{ matrix.build-dir || '.' }}/venv/${{ runner.os == 'Windows' && 'Scripts' || 'bin' }}/activate - python3 -u -m pip install gcovr==${{ matrix.compiler == 'gcc-13' && '7.2' || '5.0' }} + python3 -u -m pip install gcovr python3 -m gcovr ${{ matrix.build-dir || '' }} -j 3 --verbose \ --exclude-unreachable-branches \ --gcov-executable "${{ matrix.gcov-exec || 'gcov' }}" \ diff --git a/.github/workflows/pigz.yml b/.github/workflows/pigz.yml index 08ff4138..1343e69f 100644 --- a/.github/workflows/pigz.yml +++ b/.github/workflows/pigz.yml @@ -105,7 +105,7 @@ jobs: - name: Generate coverage report if: matrix.codecov run: | - python3 -u -m pip install --user gcovr==5.0 + python3 -u -m pip install gcovr python3 -m gcovr -j 3 --verbose \ --exclude-unreachable-branches \ --gcov-executable "${{ matrix.gcov-exec || 'gcov' }}" \