# HG changeset patch # User Bram Moolenaar # Date 1687454104 -7200 # Node ID 4d7ba56f26346d048fddb564be2c1bd60320ef17 # Parent 7be5552dc78e4476c24167ff0dfe59d4f4fbccc1 patch 9.0.1646: CI: codecov may take a very long time to run Commit: https://github.com/vim/vim/commit/982ded68b660d6c9849bfdc1b0dc469909266e1e Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu Jun 22 18:12:46 2023 +0100 patch 9.0.1646: CI: codecov may take a very long time to run Problem: CI: codecov may take a very long time to run. Solution: Add a timeout. (Philip Heiduck, closes https://github.com/vim/vim/issues/12559) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -238,6 +238,7 @@ jobs: find . -type f -name '*.gcno' -exec gcov -pb {} + || true - name: Codecov + timeout-minutes: 20 if: matrix.coverage uses: codecov/codecov-action@v3 with: @@ -610,6 +611,7 @@ jobs: find . -type f -name '*.gcno' -exec gcov -pb {} + || true - name: Codecov + timeout-minutes: 20 if: matrix.coverage uses: codecov/codecov-action@v3 with: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1646, +/**/ 1645, /**/ 1644,