From 511280d250a77a35628ee31d66299781d7cae403 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sun, 12 Dec 2021 18:38:49 +0100 Subject: [PATCH] ci: MSVC support updated to conform to new Conan versioning for this compiler --- .github/workflows/ci-conan.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 79935831..9c65f2e5 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -39,14 +39,14 @@ jobs: matrix: config: - { - name: "Windows VS 2019", + name: "Windows MSVC 14.2", os: windows-2019, - compiler: { type: VISUAL, version: 16, std: 20, cc: "cl", cxx: "cl" } + compiler: { type: MSVC, version: 192, std: 20, cc: "cl", cxx: "cl" } } - { - name: "Windows VS 2022", + name: "Windows MSVC 14.3", os: windows-2022, - compiler: { type: MSVC, version: 19.30, std: 23, cc: "cl", cxx: "cl" } + compiler: { type: MSVC, version: 193, std: 23, cc: "cl", cxx: "cl" } } - { name: "Ubuntu GCC-10",