From 90aea45e9bb02ed07f53dbd66bef0c50388bafb1 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 6 Nov 2017 01:24:37 +0200 Subject: [PATCH] Add VS2017 /std:c++17 to Appveyor --- appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3dc970e..8ee21a0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,6 +26,10 @@ environment: TOOLSET: msvc-14.0 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 TOOLSET: msvc-14.1 + CXXSTD: 14 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + TOOLSET: msvc-14.1 + CXXSTD: 17 install: - set BOOST_BRANCH=develop @@ -44,4 +48,5 @@ install: build: off test_script: - - b2 libs/bind/test toolset=%TOOLSET% + - if "%CXXSTD%" != "" set CXXSTD=cxxstd=%CXXSTD% + - b2 libs/bind/test toolset=%TOOLSET% %CXXSTD%