# HG changeset patch # User Christian Brabandt # Date 1694882703 -7200 # Node ID 59f80ca2087ef240d7bb9e117a10f8497afad8e4 # Parent 058fa5df3376271338fc65daf66f790a11ebe093 patch 9.0.1903: CI fails because snd-dummy modules missing Commit: https://github.com/vim/vim/commit/a66feb5fb5c647df1009c90278f75dc438f81dc9 Author: Christian Brabandt Date: Sat Sep 16 18:29:42 2023 +0200 patch 9.0.1903: CI fails because snd-dummy modules missing Problem: Github Actions fails because snd-dummy modules missing in current runner images Solution: ignore modprobe error related: actions/runner-images#8295 Signed-off-by: Christian Brabandt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -210,7 +210,7 @@ jobs: if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags'))) run: | sudo depmod --verbose - sudo modprobe --verbose snd-dummy + sudo modprobe --verbose snd-dummy || true - name: Check autoconf if: contains(matrix.extra, 'unittests') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1903, +/**/ 1902, /**/ 1901,