mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
16 lines
432 B
Bash
16 lines
432 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-audiodevice.sh
|
|
## Desc: Install audio device
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
echo "install switchaudio-osx"
|
|
brew_smart_install "switchaudio-osx"
|
|
|
|
echo "install sox"
|
|
brew_smart_install "sox"
|
|
|
|
invoke_tests "System" "Audio Device"
|