From 00dbd0ec9eef2fd18c8b427ad3696b4edf2b3884 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 30 Aug 2018 01:00:45 +0300 Subject: [PATCH] Add msvc-14.1/cxxstd=17 to Appveyor --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 12ad326..5af1a7c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,6 +20,9 @@ environment: TOOLSET: msvc-14.0 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 TOOLSET: msvc-14.1 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + TOOLSET: msvc-14.1 + CXXSTD: 17 install: - set BOOST_BRANCH=develop @@ -38,4 +41,5 @@ install: build: off test_script: - - b2 libs/mp11/test toolset=%TOOLSET% + - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% + - b2 -j3 libs/mp11/test toolset=%TOOLSET% %CXXSTD%