Install NASM on Windows CI job.

This commit is contained in:
Sergio Benitez 2024-06-10 14:47:25 -07:00
parent 4a00c1fe77
commit 606cd61e3f
1 changed files with 4 additions and 0 deletions

View File

@ -84,6 +84,10 @@ jobs:
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" >> "$env:GITHUB_ENV" echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" >> "$env:GITHUB_ENV"
echo "$env:VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib" >> "$env:GITHUB_PATH" echo "$env:VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib" >> "$env:GITHUB_PATH"
- name: Install NASM (Windows)
if: matrix.platform.name == 'Windows'
uses: ilammy/setup-nasm@v1
- name: Install Native Dependencies (Linux) - name: Install Native Dependencies (Linux)
if: matrix.platform.name == 'Linux' if: matrix.platform.name == 'Linux'
run: | run: |