Update python-app.yml

This commit is contained in:
Anthony Samms
2025-11-22 17:26:02 -05:00
parent 5d9b79873f
commit 9e2ce5c28a

View File

@@ -46,8 +46,18 @@ jobs:
libsndfile1-dev \
libspeexdsp-dev \
- name: Build libaudio
shell: ${{ runner.os == 'Windows' && 'msys2 {0}' || 'bash' }}
- name: Build libaudio (Windows)
if: runner.os == 'Windows'
shell: msys2 {0}
run: |
cd libs/audio
make clean
make all
make verify
- name: Build libaudio (Unix)
if: runner.os != 'Windows'
shell: bash
run: |
cd libs/audio
make clean