Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Jul 10, 2024
1 parent 0c42b7b commit a66c9cc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
sudo apt-get install -y pulseaudio
pulseaudio --check || pulseaudio --start
pactl load-module module-null-sink sink_name=vspeaker sink_properties=device.description=virtual_speaker
pactl load-module module-remap-source master=vspeaker.monitor source_name=vmic source_properties=device.description=virtual_mic
- name: Test
run: yarn test
Expand Down Expand Up @@ -88,5 +87,18 @@ jobs:
- name: Build
run: yarn build

- name: Install PulseAudio
if: matrix.machine == 'rpi3-32' ||
matrix.machine == 'rpi3-64' ||
matrix.machine == 'rpi4-32' ||
matrix.machine == 'rpi4-64' ||
matrix.machine == 'rpi5-32' ||
matrix.machine == 'rpi5-64'
run: |
sudo apt-get update
sudo apt-get install -y pulseaudio
pulseaudio --check || pulseaudio --start
pactl load-module module-null-sink sink_name=vspeaker sink_properties=device.description=virtual_speaker
- name: Test
run: yarn test

0 comments on commit a66c9cc

Please sign in to comment.