diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-22 14:56:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-22 15:13:54 +0300 |
commit | 406f00777503e698ecfca8142fc197eda44452d2 (patch) | |
tree | 0dd512e203cae476c1abd66fb66919d16340d120 /appveyor.yml | |
parent | AppVeyor: fix build numbering & only build master (diff) | |
download | aes-tools-406f00777503e698ecfca8142fc197eda44452d2.tar.gz aes-tools-406f00777503e698ecfca8142fc197eda44452d2.zip |
AppVeyor: better practices
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml index 58d0005..85ba310 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,17 +1,23 @@ version: '{build}' -image: - - Visual Studio 2017 - branches: only: - master environment: - appveyor_boost_version: 1.69.0 matrix: - - appveyor_asm: 1 - - appveyor_asm: 0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + appveyor_boost_version: 1.62.0 + appveyor_asm: 1 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + appveyor_boost_version: 1.62.0 + appveyor_asm: 0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + appveyor_boost_version: 1.69.0 + appveyor_asm: 1 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + appveyor_boost_version: 1.69.0 + appveyor_asm: 0 platform: - Win32 |