Various AppVeyor updates:

1. fix `CONFIGURATION` environment variable
2. set verbosity to minimal and specify the solution file
3. enable build cache
4. enable fast_finish

Close #275 by merging it.
This commit is contained in:
XhmikosR 2014-09-23 13:46:47 +03:00
parent a6f7a9ab36
commit dd704f6937

View File

@ -1,3 +1,19 @@
# Variables
configuration:
# - Debug
- Release
# build options
build:
project: src\SubtitleEdit.sln
verbosity: minimal
# custom test command
test_script:
- set
- vstest.console /logger:Appveyor /Settings:"%APPVEYOR_BUILD_FOLDER%\src\Local.testsettings" %APPVEYOR_BUILD_FOLDER%\src\Test\bin\$(configuration)\Test.dll
- vstest.console /logger:Appveyor /Settings:"%APPVEYOR_BUILD_FOLDER%\src\Local.testsettings" %APPVEYOR_BUILD_FOLDER%\src\Test\bin\%CONFIGURATION%\Test.dll
cache:
- src\packages # preserve the "src\packages" directory
matrix:
fast_finish: true