Install SDL2 through vcpkg on Windows CI
This commit is contained in:
parent
cb3c787db0
commit
8cafbdbaae
1 changed files with 3 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -20,6 +20,9 @@ jobs:
|
|||
- name: Download SDL2 through Homebrew
|
||||
if: matrix.os == 'macos-latest'
|
||||
run: brew install sdl2
|
||||
- name: Download SDL2 through vcpkg
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: vcpkg install sdl2
|
||||
- name: Download LunarG key
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
||||
|
|
Reference in a new issue