From 936fa476e1f0c0df6fd6541ebbd9ec168417a5c8 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Wed, 12 Jun 2024 10:36:00 -0400 Subject: [PATCH] Revert "Don't use winget" This reverts commit cb31074a3e98d8a5216b4c47cc3067d18ac1704d. --- .github/workflows/build.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d0837830..78663219 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -117,6 +117,19 @@ jobs: update: true install: git pkgconf mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake + - name: Install winget + uses: Cyberboss/install-winget@v1.0.6 + if: ${{ runner.os == 'Windows' }} + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Install OpenGL Compatibility Pack (Windows) + if: ${{ runner.os == 'Windows' }} + shell: powershell + run: | + winget source update + winget install 9NQPSL29BFFF --source=msstore --disable-interactivity --accept-source-agreements --accept-package-agreements + - name: Install Dependencies (macOS) if: ${{ runner.os == 'macOS' }} shell: bash