Install Portaudio for Ubuntu
This commit is contained in:
parent
5442ee649c
commit
c685863c27
2 changed files with 8 additions and 1 deletions
7
.github/workflows/build.yaml
vendored
7
.github/workflows/build.yaml
vendored
|
@ -16,7 +16,12 @@ jobs:
|
|||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
- name: Install Ubuntu dependencies
|
||||
run: |
|
||||
cd build
|
||||
chmod +x install-ubuntu.sh
|
||||
./install-ubuntu.sh
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install flake8
|
||||
|
|
2
build/install-ubuntu.sh
Normal file
2
build/install-ubuntu.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
!/bin/bash
|
||||
sudo apt-get -y install libasound-dev libportaudio2
|
Loading…
Reference in a new issue