From 20f6bb322565e8899b22091d2857d1dba9a40536 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Tue, 2 Apr 2024 23:12:56 +0200 Subject: [PATCH] Switch to use Visual Studio 17 2022 --- .github/workflows/conda-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conda-ci.yml b/.github/workflows/conda-ci.yml index 2a73ca663..70578615a 100644 --- a/.github/workflows/conda-ci.yml +++ b/.github/workflows/conda-ci.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: build_type: [Release] - os: [ubuntu-latest, windows-2019, macos-latest] + os: [ubuntu-latest, windows-latest, macos-latest] fail-fast: false steps: @@ -62,7 +62,7 @@ jobs: run: | mkdir -p build cd build - cmake -G"Visual Studio 16 2019" -DBUILD_TESTING:BOOL=ON \ + cmake -G"Visual Studio 17 2022" -DBUILD_TESTING:BOOL=ON \ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} .. - name: Build