annotate ci/load-snd-dummy.sh @ 25486:9ca6ec7da094

Added tag v8.2.3279 for changeset 7d24fdd18672be4599449f91afe7cb134f66fe44
author Bram Moolenaar <Bram@vim.org>
date Mon, 02 Aug 2021 22:30:04 +0200
parents 3a7017ee1161
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19722
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 #!/bin/bash
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 set -e
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 if ! modprobe snd-dummy; then
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 # snd-dummy is contained in linux-modules-extra (if exists)
21875
3a7017ee1161 patch 8.2.1487: Travis: installing snd-dummy is not always useful
Bram Moolenaar <Bram@vim.org>
parents: 19722
diff changeset
6 apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
19722
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 modprobe snd-dummy
c94c103e7cb4 patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 fi