summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2021-06-22 18:21:19 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-22 18:21:19 +0200
commitef7be8348fd830e409504a442f3f3ad0931cfbc3 (patch)
tree79d188f4b7c776731f6f3e3cf6df7a3549213c7b
parent419a40ac9657e39646b2e0f3f71d7736b0c459d1 (diff)
patch 8.2.3034: installing packages on github CI sometimes failsv8.2.3034
Problem: Installing packages on github CI sometimes fails. Solution: Update package information first. (Christian Brabandt, closes #8432)
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e569b42397..b821e822b1 100644
--- 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
index d8d033a2e0..5502952b7a 100644
--- 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,