From 8c9bd9eccd05eb5c70a2b5af31c85b74f34842dc Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 8 Mar 2018 15:51:01 +0000 Subject: [PATCH] Test in msvc-14.1 C++17 mode + write out hash_info --- .appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 76189c2..61c7e7f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,6 +14,7 @@ environment: TOOLSET: msvc-14.0 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 TOOLSET: msvc-14.1 + CXXSTD: 14,17 install: - cd c:\projects @@ -29,5 +30,7 @@ install: build: off test_script: + - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% - cd %APPVEYOR_BUILD_FOLDER%\test - - cmd /c %BOOST_ROOT%\tools\build\b2 -j 3 toolset=%TOOLSET% include=%APPVEYOR_BUILD_FOLDER%\include include=%BOOST_ROOT% + - cmd /c %BOOST_ROOT%\tools\build\b2 -j 3 toolset=%TOOLSET% %CXXSTD% include=%APPVEYOR_BUILD_FOLDER%\include include=%BOOST_ROOT% --verbose-test hash_info + - cmd /c %BOOST_ROOT%\tools\build\b2 -j 3 toolset=%TOOLSET% %CXXSTD% include=%APPVEYOR_BUILD_FOLDER%\include include=%BOOST_ROOT%