From 938a25c9a3a4a98442ffee71096929b176a3dbe6 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 2 Aug 2022 10:44:25 +0200 Subject: [PATCH] ci: MSVC compiler paths removed --- .github/workflows/ci-test-package-cmake.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 8dbb8423..0d80ee15 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -45,14 +45,12 @@ jobs: - { name: "Windows MSVC 14.2", os: windows-2019, - compiler: - { type: VISUAL, version: 16, std: 20, cc: "cl", cxx: "cl" }, + compiler: { type: VISUAL, version: 16, cc: "", cxx: "", std: 20 }, } - { name: "Windows MSVC 14.3", os: windows-2022, - compiler: - { type: MSVC, version: 193, std: 23, cc: "cl", cxx: "cl" }, + compiler: { type: MSVC, version: 193, cc: "", cxx: "", std: 23 }, } - { name: "Ubuntu GCC-10",