From b48a266c6d9de7a32d4cc9c9cc852ea5e87097c0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 24 Aug 2021 17:54:49 +0200 Subject: [PATCH] Try building with MSVS 2022 too --- .github/workflows/ci_msw.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_msw.yml b/.github/workflows/ci_msw.yml index 13407e3a34..0fe507e431 100644 --- a/.github/workflows/ci_msw.yml +++ b/.github/workflows/ci_msw.yml @@ -42,17 +42,22 @@ on: - '*.yml' jobs: - msw-vs2019: - runs-on: windows-2019 - name: wxMSW vs2019 ${{ matrix.configuration }} ${{ matrix.platform }} + msw-msvs: + runs-on: windows-${{ matrix.vsversion }} + name: wxMSW vs${{ matrix.vsversion }} ${{ matrix.configuration }} ${{ matrix.platform }} strategy: fail-fast: false matrix: include: + - configuration: 'DLL Debug' + platform: 'x64' + vsversion: 2022 - configuration: 'Debug' platform: 'Win32' + vsversion: 2019 - configuration: 'DLL Release' platform: 'x64' + vsversion: 2019 steps: - name: Checkout