# HG changeset patch # User Bram Moolenaar # Date 1624379405 -7200 # Node ID cc09387f723ede8f320c9ccbae9ac36ddcf3c074 # Parent 909f6cd6b9a38ceff85b78b22fe35d7d8b2ae90a patch 8.2.3034: installing packages on github CI sometimes fails Commit: https://github.com/vim/vim/commit/ef7be8348fd830e409504a442f3f3ad0931cfbc3 Author: Christian Brabandt Date: Tue Jun 22 18:21:19 2021 +0200 patch 8.2.3034: installing packages on github CI sometimes fails Problem: Installing packages on github CI sometimes fails. Solution: Update package information first. (Christian Brabandt, closes #8432) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: - name: Install packages run: | - sudo apt-get install -y \ + sudo apt update && sudo apt install -y \ autoconf \ lcov \ gettext \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3034, +/**/ 3033, /**/ 3032,