From 739077a8db480f5c3a064750f3ea824f622c003c Mon Sep 17 00:00:00 2001 From: ado Date: Sat, 29 Jul 2023 14:54:25 +0200 Subject: [PATCH] Fix msvc ci vs version names --- .github/workflows/win-latest-msvc.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/win-latest-msvc.yaml b/.github/workflows/win-latest-msvc.yaml index c422bcf..d28e5fb 100644 --- a/.github/workflows/win-latest-msvc.yaml +++ b/.github/workflows/win-latest-msvc.yaml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - vs: [vs17, vs16] + vs: ["Visual Studio 16 2019", "Visual Studio 17 2022"] build: [Debug, Release] platform: [Win32, x64] @@ -37,7 +37,7 @@ jobs: run: script/ci_install_deps.sh - name: Configure - run: cmake -S test -B build -D CMAKE_BUILD_TYPE=Debug + run: cmake -S test -B build -D CMAKE_BUILD_TYPE=${{ matrix.build }} - name: Build run: cmake --build build -j ${{ steps.cores.outputs.count }}