view ci/load-snd-dummy.sh @ 27388:83bd6e25d0b6 v8.2.4222

patch 8.2.4222: MS-Windows: clumsy way to suppress progress on CI Commit: https://github.com/vim/vim/commit/47d1666d605998a97d3827eca4d467ad0930b284 Author: K.Takata <kentkt@csc.jp> Date: Wed Jan 26 16:20:21 2022 +0000 patch 8.2.4222: MS-Windows: clumsy way to suppress progress on CI Problem: MS-Windows: clumsy way to suppress progress on CI. Solution: Check for "$CI" in the Makefile itself. (Ken Takata, closes https://github.com/vim/vim/issues/9631)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Jan 2022 17:30:04 +0100
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi