Skip to content

Commit

Permalink
CI: install portaudio (#182)
Browse files Browse the repository at this point in the history
* CI: install portaudio for Macos

* Fix typo

* Install portaudio under Ubuntu as well
  • Loading branch information
hagenw authored Dec 16, 2024
1 parent a9bc048 commit de1c5fe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Prepare Macos
run: |
brew install portaudio
if: matrix.os == 'macos-latest'

- name: Prepare Ubuntu
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1 sox
sudo apt-get install --no-install-recommends --yes libsndfile1 sox portaudio19-dev
if: matrix.os == 'ubuntu-latest'

- name: Install dependencies
Expand Down

0 comments on commit de1c5fe

Please sign in to comment.