From 4af206ea53eba7fe2ab4fd3904cd3009d2e28452 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 25 May 2017 08:47:08 +0100 Subject: [PATCH] Appveyor: try enabling msvc-14.1, and add address-model to matrix. --- appveyor.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 39438fc1..a7ae0faf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,16 +12,22 @@ branches: - develop platform: - - x86 - x64 environment: matrix: - - TOOLSET: msvc-9.0 - - TOOLSET: msvc-10.0 - - TOOLSET: msvc-11.0 - - TOOLSET: msvc-12.0 - - TOOLSET: msvc-14.0 + - ARGS: --toolset=msvc-9.0 address-model=32 + - ARGS: --toolset=msvc-10.0 address-model=32 + - ARGS: --toolset=msvc-11.0 address-model=32 + - ARGS: --toolset=msvc-12.0 address-model=32 + - ARGS: --toolset=msvc-14.0 address-model=32 + - ARGS: --toolset=msvc-14.1 address-model=32 + - ARGS: --toolset=msvc-9.0 address-model=64 + - ARGS: --toolset=msvc-10.0 address-model=64 + - ARGS: --toolset=msvc-11.0 address-model=64 + - ARGS: --toolset=msvc-12.0 address-model=64 + - ARGS: --toolset=msvc-14.0 address-model=64 + - ARGS: --toolset=msvc-14.1 address-model=64 install: - cd .. @@ -40,7 +46,7 @@ build: off test_script: - dir - cd libs\config\test - - ..\..\..\b2 config_info_travis_install toolset=%TOOLSET% + - ..\..\..\b2 config_info_travis_install %ARGS% - dir - config_info_travis - - ..\..\..\b2 -j3 toolset=%TOOLSET% + - ..\..\..\b2 -j3 %ARGS%