From 986057f5658a0da11a771eb28142f077c50eb235 Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Sat, 17 Jun 2023 22:37:21 -0400 Subject: [PATCH] Reduce the number of UWP builds - Only Release and ReleaseANGLE for x64 will be produced --- .github/workflows/MSVC.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/MSVC.yml b/.github/workflows/MSVC.yml index eab4074cc6..59755ae3e4 100644 --- a/.github/workflows/MSVC.yml +++ b/.github/workflows/MSVC.yml @@ -15,8 +15,11 @@ jobs: runs-on: windows-2022 strategy: matrix: - configuration: [Debug, DebugANGLE, Release, ReleaseANGLE] - platform: [x86, x64, ARM, ARM64] + include: + - configuration: Release + platform: x64 + - configuration: ReleaseANGLE + platform: x64 steps: - uses: actions/checkout@v3