mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* get rid of invoke_tests imports * add sudo * change path to /usr/bin/invoke_tests * create /usr/local/bin dir * remove local variables * fix group owner * set default 775 perm * delete invoke_tests symlink
18 lines
417 B
Bash
18 lines
417 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
|
|
echo "install soundflower"
|
|
brew install --cask soundflower
|
|
|
|
echo "install switchaudio-osx"
|
|
brew_smart_install "switchaudio-osx"
|
|
|
|
echo "install sox"
|
|
brew_smart_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"
|