summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-22 19:05:33 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-22 19:05:33 +0100
commite5492609b3a153c631f1d600ecdef1af1c913bef (patch)
tree8ac8edf36add01afc1be922eadf91059d12ebd94 /.github
parent58a52f215a568b32c8a3aec0ccdb383f1a76dba0 (diff)
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)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2a1a218bb4..40a2ce3e5e 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()