Attempt to fix vcpkg issues
This commit is contained in:
parent
ea8daa2397
commit
37fe1a21db
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -22,7 +22,9 @@ jobs:
|
||||||
run: brew install sdl2
|
run: brew install sdl2
|
||||||
- name: Download SDL2 through vcpkg
|
- name: Download SDL2 through vcpkg
|
||||||
if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
run: vcpkg install sdl2
|
run: |
|
||||||
|
. "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
||||||
|
vcpkg --triplet=${{ matrix.triplet }} install sdl2
|
||||||
- name: Download LunarG key
|
- name: Download LunarG key
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
run: wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
||||||
|
|
Reference in a new issue