diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-12-22 19:05:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-12-22 19:05:33 +0100 |
commit | e5492609b3a153c631f1d600ecdef1af1c913bef (patch) | |
tree | 8ac8edf36add01afc1be922eadf91059d12ebd94 | |
parent | 58a52f215a568b32c8a3aec0ccdb383f1a76dba0 (diff) | |
download | vim-git-e5492609b3a153c631f1d600ecdef1af1c913bef.tar.gz |
patch 8.2.2192: Codecov on github actions failsv8.2.2192
Problem: Codecov on github actions fails.
Solution: Revert to codecov script. (Ozaki Kiichi, closes #7529)
-rw-r--r-- | .github/workflows/ci.yml | 8 | ||||
-rw-r--r-- | Filelist | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a1a218bb..40a2ce3e5 100644 --- 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() @@ -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 index 9a5a41402..7c9529b55 100644 --- 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, |