comparison .github/workflows/ci.yml @ 28487:9563ae315e88 v8.2.4768

patch 8.2.4768: CI: codecov upload sometimes does not work Commit: https://github.com/vim/vim/commit/34ffa102806da6b7562a010a2dca08448d3cc465 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat Apr 16 21:46:38 2022 +0100 patch 8.2.4768: CI: codecov upload sometimes does not work Problem: CI: codecov upload sometimes does not work. Solution: Use action v3 instead of v2. (closes https://github.com/vim/vim/issues/10209)
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Apr 2022 23:00:03 +0200
parents da67829ad0d3
children 74d5c6fbdf5a
comparison
equal deleted inserted replaced
28486:b704991bcc22 28487:9563ae315e88
252 cd "${SRCDIR}" 252 cd "${SRCDIR}"
253 find . -type f -name '*.gcno' -exec gcov -pb {} + || true 253 find . -type f -name '*.gcno' -exec gcov -pb {} + || true
254 254
255 - name: Codecov 255 - name: Codecov
256 if: matrix.coverage 256 if: matrix.coverage
257 uses: codecov/codecov-action@v2 257 uses: codecov/codecov-action@v3
258 with: 258 with:
259 flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} 259 flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }}
260 260
261 - name: ASan logs 261 - name: ASan logs
262 if: contains(matrix.extra, 'asan') && !cancelled() 262 if: contains(matrix.extra, 'asan') && !cancelled()