Files
runner-images/images/macos/provision/core/audiodevice.sh
Darii Nurgaleev 0d93dd2fc9 [macOS] brew --cask option fix. (#2325)
* [macOS] brew --cask option fix.

* removed curl from HS

* return curl back
2020-12-22 10:48:31 +03:00

18 lines
408 B
Bash

#!/bin/bash -e -o pipefail
source ~/utils/invoke-tests.sh
echo "install soundflower"
brew install --cask soundflower
echo "install switchaudio-osx"
brew install switchaudio-osx
echo "install sox"
brew install sox
echo "set Soundflower (2ch) as input/output device"
SwitchAudioSource -s "Soundflower (2ch)" -t input
SwitchAudioSource -s "Soundflower (2ch)" -t output
invoke_tests "Common" "Audio Device"