comparison .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
comparison
equal deleted inserted replaced
33270:058fa5df3376 33271:59f80ca2087e
208 208
209 - name: modprobe snd-dummy 209 - name: modprobe snd-dummy
210 if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags'))) 210 if: (!(contains(matrix.extra, 'unittests') || contains(matrix.extra, 'vimtags')))
211 run: | 211 run: |
212 sudo depmod --verbose 212 sudo depmod --verbose
213 sudo modprobe --verbose snd-dummy 213 sudo modprobe --verbose snd-dummy || true
214 214
215 - name: Check autoconf 215 - name: Check autoconf
216 if: contains(matrix.extra, 'unittests') 216 if: contains(matrix.extra, 'unittests')
217 run: | 217 run: |
218 make -C src autoconf 218 make -C src autoconf