diff .github/workflows/ci.yml @ 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 db65486d8d75
children 14b9adfe6822
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')