changeset 33271:59f80ca2087e v9.0.1903

patch 9.0.1903: CI fails because snd-dummy modules missing Commit: https://github.com/vim/vim/commit/a66feb5fb5c647df1009c90278f75dc438f81dc9 Author: Christian Brabandt <cb@256bit.org> 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 <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Sep 2023 18:45:03 +0200
parents 058fa5df3376
children a86002b75b6a
files .github/workflows/ci.yml src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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')
--- 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,