From 4703ebb4e031853017feeb0d9d8ae8b5dbef24ca Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Mon, 15 Sep 2025 13:25:56 -0400 Subject: [PATCH] Update build_audio.yml --- .github/workflows/build_audio.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_audio.yml b/.github/workflows/build_audio.yml index 249deb8..7855566 100644 --- a/.github/workflows/build_audio.yml +++ b/.github/workflows/build_audio.yml @@ -19,6 +19,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Setup MSVC Build Environment + uses: microsoft/setup-msbuild@v2 + - name: Install vcpkg run: | git clone https://github.com/microsoft/vcpkg.git @@ -33,22 +36,17 @@ jobs: echo "VCPKG_INCLUDE_PATH=${{ github.workspace }}\vcpkg\installed\x64-windows\include" >> $env:GITHUB_ENV echo "VCPKG_LIB_PATH=${{ github.workspace }}\vcpkg\installed\x64-windows\lib" >> $env:GITHUB_ENV - - name: Build audio library (MSVC nmake) + - name: Build audio library working-directory: libs/audio - shell: cmd run: | - call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" nmake /f Makefile all - name: List build outputs working-directory: libs/audio - shell: cmd run: | dir - name: Clean build artifacts working-directory: libs/audio - shell: cmd run: | - call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" nmake /f Makefile clean