From 9dd14d952c387ea22e97faa175fb39749d4f7885 Mon Sep 17 00:00:00 2001 From: Ruben Perez Date: Wed, 15 Jun 2022 23:46:37 +0200 Subject: [PATCH] Removed C++17 redundant build in appveyor --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f6f10371..72505626 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,12 +39,12 @@ environment: APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PLATFORM: x64 B2_TOOLSET: msvc-14.2 - B2_CXXSTD: 11,14,17,20 + B2_CXXSTD: 11,14,20 # C++17 is already tested with CMake - FLAVOR: Visual Studio 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PLATFORM: x86 B2_TOOLSET: msvc-14.2 - B2_CXXSTD: 11,14,17,20 + B2_CXXSTD: 11,14,20 # C++17 is already tested with CMake # CMake - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 CMAKE_BUILD_TYPE: Debug