From 8cafbdbaaed5c5b8331dc0367ce9ddc87df902f2 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 7 Mar 2022 09:24:16 -0500 Subject: [PATCH] Install SDL2 through vcpkg on Windows CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bafce8..d55c3a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 -