From f762736da24f4332b09e730153d7e9c185125c91 Mon Sep 17 00:00:00 2001 From: ado Date: Sat, 29 Jul 2023 14:59:49 +0200 Subject: [PATCH] Fix msvc ci configure step --- .github/workflows/win-latest-msvc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/win-latest-msvc.yaml b/.github/workflows/win-latest-msvc.yaml index d28e5fb..9607fe0 100644 --- a/.github/workflows/win-latest-msvc.yaml +++ b/.github/workflows/win-latest-msvc.yaml @@ -37,7 +37,7 @@ jobs: run: script/ci_install_deps.sh - name: Configure - run: cmake -S test -B build -D CMAKE_BUILD_TYPE=${{ matrix.build }} + run: cmake -S test -B build -G ${{ matrix.vs }} -A ${{ matrix.platform }} -D CMAKE_BUILD_TYPE=${{ matrix.build }} - name: Build run: cmake --build build -j ${{ steps.cores.outputs.count }}