Appveyor: try enabling msvc-14.1, and add address-model to matrix.

This commit is contained in:
jzmaddock
2017-05-25 08:47:08 +01:00
parent e41b4e22ac
commit 4af206ea53

View File

@@ -12,16 +12,22 @@ branches:
- develop - develop
platform: platform:
- x86
- x64 - x64
environment: environment:
matrix: matrix:
- TOOLSET: msvc-9.0 - ARGS: --toolset=msvc-9.0 address-model=32
- TOOLSET: msvc-10.0 - ARGS: --toolset=msvc-10.0 address-model=32
- TOOLSET: msvc-11.0 - ARGS: --toolset=msvc-11.0 address-model=32
- TOOLSET: msvc-12.0 - ARGS: --toolset=msvc-12.0 address-model=32
- TOOLSET: msvc-14.0 - 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: install:
- cd .. - cd ..
@@ -40,7 +46,7 @@ build: off
test_script: test_script:
- dir - dir
- cd libs\config\test - cd libs\config\test
- ..\..\..\b2 config_info_travis_install toolset=%TOOLSET% - ..\..\..\b2 config_info_travis_install %ARGS%
- dir - dir
- config_info_travis - config_info_travis
- ..\..\..\b2 -j3 toolset=%TOOLSET% - ..\..\..\b2 -j3 %ARGS%