diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-24 18:37:28 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-24 19:00:35 +0300 |
commit | 8952e87e7e61751b44a79b4f6a5132216896fecc (patch) | |
tree | d305a8f07cf5b1758bf0c9191faab34209105600 /appveyor.yml | |
parent | split root .gitattributes (diff) | |
download | aes-tools-8952e87e7e61751b44a79b4f6a5132216896fecc.tar.gz aes-tools-8952e87e7e61751b44a79b4f6a5132216896fecc.zip |
AppVeyor: refactor appveyor.yml
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/appveyor.yml b/appveyor.yml index 85ba310..55ec229 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,23 +1,13 @@ version: '{build}' -branches: - only: - - master +image: + - Visual Studio 2015 + - Visual Studio 2017 environment: matrix: - - 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 + - appveyor_asm: 1 + - appveyor_asm: 0 platform: - Win32 @@ -37,3 +27,16 @@ build_script: test_script: - ps: .\.appveyor\test.ps1 + +for: +- matrix: + only: + - image: Visual Studio 2015 + environment: + appveyor_boost_version: 1.62.0 + +- matrix: + only: + - image: Visual Studio 2017 + environment: + appveyor_boost_version: 1.69.0 |