mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 17:43:54 +08:00
CI: enable virtual audio sink for soundd (#31120)
* enable virtual sound
* mv install to dockerfile
* cleaner
---------
Co-authored-by: Justin Newberry <justin@comma.ai>
old-commit-hash: 403610eed9
This commit is contained in:
@@ -4,7 +4,7 @@ ENV PYTHONUNBUFFERED 1
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends sudo tzdata locales ssh && \
|
||||
apt-get install -y --no-install-recommends sudo tzdata locales ssh pulseaudio && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
|
||||
|
||||
10
selfdrive/test/setup_vsound.sh
Executable file
10
selfdrive/test/setup_vsound.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
{
|
||||
#start pulseaudio daemon
|
||||
sudo pulseaudio -D
|
||||
|
||||
# create a virtual null audio and set it to default device
|
||||
sudo pactl load-module module-null-sink sink_name=virtual_audio
|
||||
sudo pactl set-default-sink virtual_audio
|
||||
} > /dev/null 2>&1
|
||||
Reference in New Issue
Block a user