# HG changeset patch # User Bram Moolenaar # Date 1608660904 -3600 # Node ID a668a3cad9f690f035bc3bd647807d86d43f078f # Parent 3e7962e3f1ce7b62a9299c1e3cf25f3ba22842c4 patch 8.2.2192: Codecov on github actions fails Commit: https://github.com/vim/vim/commit/e5492609b3a153c631f1d600ecdef1af1c913bef Author: Bram Moolenaar Date: Tue Dec 22 19:05:33 2020 +0100 patch 8.2.2192: Codecov on github actions fails Problem: Codecov on github actions fails. Solution: Revert to codecov script. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7529) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,11 +214,9 @@ jobs: - name: Codecov if: matrix.coverage && success() - uses: codecov/codecov-action@v1 - with: - flags: ${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} - fail_ci_if_error: true - working-directory: ${{ env.SRCDIR }} + run: | + cd "${SRCDIR}" + bash <(curl -s https://codecov.io/bash) -F "${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }}" - name: ASan logs if: contains(matrix.extra, 'asan') && !cancelled() diff --git a/Filelist b/Filelist --- a/Filelist +++ b/Filelist @@ -9,7 +9,7 @@ SRC_ALL = \ .lgtm.yml \ .travis.yml \ .cirrus.yml \ - .github/workflows/ci-windows.yaml \ + .github/workflows/ci.yml \ .github/workflows/codeql-analysis.yml \ .github/CODEOWNERS \ appveyor.yml \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2192, +/**/ 2191, /**/ 2190,