Skip to content

Commit

Permalink
install portaudio on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
bejager committed May 2, 2024
1 parent 8e3e4fc commit dadd98d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ '3.8', '3.9', '3.10' ]
include:
- os: ubuntu-latest
install_dep: sudo apt install libportaudio2
- os: windows-latest
- os: macos-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -46,7 +51,9 @@ jobs:
pip install wheel && cd ../../binding/python && python3 setup.py sdist bdist_wheel && pip install dist/pvorca-0.1.4-py3-none-any.whl
- name: Install dependencies
run: pip install -r requirements.txt
run: |
${{matrix.install_dep}}
pip install -r requirements.txt
- name: Test streaming
run: >
Expand Down

0 comments on commit dadd98d

Please sign in to comment.