From 49edfceea2c1968a54842ba1c556aae748e86fe6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 18 Dec 2019 00:30:47 +0200 Subject: [PATCH] Add msvc-14.2, clang-win, address-model=32,64, variant=debug,release to Appveyor --- appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b052569..07f719d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,10 @@ environment: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 TOOLSET: msvc-12.0,msvc-14.0 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - TOOLSET: msvc-14.1 + TOOLSET: msvc-14.1,clang-win + CXXSTD: 14,17 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + TOOLSET: msvc-14.2 CXXSTD: 14,17 install: @@ -36,4 +39,4 @@ build: off test_script: - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% - - b2 -j3 libs/mp11/test toolset=%TOOLSET% %CXXSTD% + - b2 -j3 libs/mp11/test toolset=%TOOLSET% %CXXSTD% address-model=32,64 variant=debug,release