From f6250d69e1bbf1ab360e92e8d0a7ecf55bd1c471 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 16 Nov 2021 09:19:10 +0100 Subject: [PATCH] ci: VS2019 configuration restored --- .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 6b917679..79935831 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -39,14 +39,14 @@ jobs: matrix: config: - { - name: "Windows MSVC-19.29", + name: "Windows VS 2019", os: windows-2019, - compiler: { type: MSVC, version: 19.29, std: 20 } + compiler: { type: VISUAL, version: 16, std: 20, cc: "cl", cxx: "cl" } } - { - name: "Windows MSVC-19.30", + name: "Windows VS 2022", os: windows-2022, - compiler: { type: MSVC, version: 19.30, std: 23 } + compiler: { type: MSVC, version: 19.30, std: 23, cc: "cl", cxx: "cl" } } - { name: "Ubuntu GCC-10",