diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-02-27 11:21:51 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2018-02-27 11:21:51 +0100 |
commit | 020c30f63d1b747c9001471c5d279db4890692e4 (patch) | |
tree | f948c3c4eb6d273a6b35deacc25b9ab021f95a49 | |
parent | f84d90c9e80ce6c12150d1bfe0f8f5fc44c90396 (diff) | |
download | libtdevnc-020c30f63d1b747c9001471c5d279db4890692e4.tar.gz libtdevnc-020c30f63d1b747c9001471c5d279db4890692e4.zip |
AppVeyorCI: set path to devenv tool based on environment
-rw-r--r-- | .appveyor.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 0393f3a..cd48d97 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,9 +2,12 @@ #environment: # APPVEYOR_RDP_PASSWORD: Pa55word -os: - - Visual Studio 2013 - - Visual Studio 2015 +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013 + DEVENV_EXE: C:\"Program Files (x86)"\"Microsoft Visual Studio 12.0"\Common7\IDE\devenv.exe + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + DEVENV_EXE: C:\"Program Files (x86)"\"Microsoft Visual Studio 14.0"\Common7\IDE\devenv.exe #init: # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) @@ -33,7 +36,8 @@ install: - 7z x db-4.1.25.tar.gz -so | 7z x -si -ttar > nul - move db-4.1.25 db - cd db\build_win32 - - C:\"Program Files (x86)"\"Microsoft Visual Studio 12.0"\Common7\IDE\devenv.exe db_dll.dsp /upgrade + - echo using devenv %DEVENV_EXE% + - '%DEVENV_EXE% db_dll.dsp /upgrade' - msbuild /p:Configuration=Release db_dll.vcxproj - cd ..\.. # Cyrus SASL |