patch 9.0.1903: CI fails because snd-dummy modules missing
Commit:
https://github.com/vim/vim/commit/a66feb5fb5c647df1009c90278f75dc438f81dc9
Author: Christian Brabandt <[email protected]>
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 <[email protected]>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 30e9d6c65..f3ed8acb1 100644
--- 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
index 677c35cb0..264fc7e7d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -699,6 +699,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1903,
/**/
1902,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1qhYPn-00FDWf-2I%40256bit.org.