From: Nathan Moinvaziri Date: Thu, 24 Oct 2019 16:08:41 +0000 (-0700) Subject: Fixed pip not installing codecov-python on windows after mingw downgrade. X-Git-Tag: 1.9.9-b1~389 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56ca06c75d188a4df2ffc8f5fc81c010cbe20415;p=thirdparty%2Fzlib-ng.git Fixed pip not installing codecov-python on windows after mingw downgrade. --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4c3cdcf5..5cb5db88 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -269,15 +269,16 @@ jobs: - name: Install packages (Windows) if: runner.os == 'Windows' - # Use gcov-7 on windows because gcov-8 throws tons of warnings + # Use gcov-7 via mingw on windows because gcov-8 throws tons of warnings # https://partner-bugzilla.redhat.com/show_bug.cgi?id=1577508 # Need to use special fork of codecov-python for Windows # https://github.com/codecov/codecov-python/pull/169 run: | + python -u -m pip install --upgrade pip + python -u -m pip -v install git+https://github.com/nmoinvaz/codecov-python.git@master choco install ninja ${{ matrix.packages }} choco uninstall mingw choco install mingw --version=7.3.0 - pip install git+https://github.com/nmoinvaz/codecov-python.git@master - name: Install packages (macOS) if: runner.os == 'macOS'