From dacbf4fd6c80d726b3d87e77c91bcacdd4fc57c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 8 Dec 2023 23:53:54 +0100 Subject: [PATCH] Drop VS 2017 support We do not support specific compilers, but rather compilers with reasonable quality of their C++14 support. While developing the new random generators, I ran into issues with VS2017 where it rejects perfectly valid C++14 code, **and** the error does not point me in the right direction to try and work around the issue. It is time for VS2017 to go. --- appveyor.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 3b6580d8..7a0ad83f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -70,14 +70,3 @@ environment: additional_flags: "/permissive- /std:c++latest" platform: x64 configuration: Debug - - - FLAVOR: VS 2017 x64 Debug - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - platform: x64 - configuration: Debug - - - FLAVOR: VS 2017 x64 Release Coverage - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - coverage: 1 - platform: x64 - configuration: Debug \ No newline at end of file