Update build_audio.yml

This commit is contained in:
Anthony Samms
2025-09-15 12:13:09 -04:00
parent bf850644cb
commit 97c59e0021

View File

@@ -41,12 +41,14 @@ jobs:
- name: Check dependencies - name: Check dependencies
run: make check-deps run: make check-deps
shell: cmd shell: cmd
working-directory: libs/audio
env: env:
VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }} VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }}
- name: Build audio library - name: Build audio library
run: make all run: make all
shell: cmd shell: cmd
working-directory: libs/audio
env: env:
VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }} VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }}
@@ -55,8 +57,8 @@ jobs:
with: with:
name: libaudio-windows-x64 name: libaudio-windows-x64
path: | path: |
libaudio.dll libs/audio/libaudio.dll
*.lib libs/audio/*.lib
retention-days: 30 retention-days: 30
- name: Run tests (if available) - name: Run tests (if available)
@@ -68,6 +70,7 @@ jobs:
echo No tests found, skipping... echo No tests found, skipping...
) )
shell: cmd shell: cmd
working-directory: libs/audio
continue-on-error: true continue-on-error: true
build-matrix: build-matrix:
@@ -109,6 +112,7 @@ jobs:
make all make all
} }
shell: powershell shell: powershell
working-directory: libs/audio
env: env:
VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }} VCPKG_INSTALLATION_ROOT: ${{ env.VCPKG_ROOT }}
@@ -117,7 +121,7 @@ jobs:
with: with:
name: libaudio-windows-${{ matrix.architecture }}-${{ matrix.configuration }} name: libaudio-windows-${{ matrix.architecture }}-${{ matrix.configuration }}
path: | path: |
libaudio.dll libs/audio/libaudio.dll
*.lib libs/audio/*.lib
*.pdb libs/audio/*.pdb
retention-days: 30 retention-days: 30