# http://www.appveyor.com/docs/appveyor-yml | |
notifications: | |
- provider: Email | |
to: | |
- vik.kirilov@gmail.com | |
on_build_status_changed: true | |
on_build_failure: true | |
on_build_success: false | |
# gitter | |
- provider: Webhook | |
url: https://webhooks.gitter.im/e/3a78202a235c0325e516 | |
on_build_status_changed: true | |
on_build_failure: true | |
on_build_success: false | |
clone_depth: 5 | |
branches: | |
except: | |
- gh-pages | |
- coverity_scan | |
matrix: | |
fast_finish: true | |
environment: | |
matrix: | |
- platform: x86 | |
configuration: Debug | |
arch: "Win32" | |
VS_GEN: "" | |
- platform: x86 | |
configuration: Release | |
arch: "Win32" | |
VS_GEN: "" | |
- platform: x64 | |
configuration: Debug | |
arch: "x64" | |
VS_GEN: " Win64" | |
- platform: x64 | |
configuration: Release | |
arch: "x64" | |
VS_GEN: " Win64" | |
before_build: | |
- cmake . -G "Visual Studio 14 2015%VS_GEN%" | |
build_script: | |
- msbuild all.sln /p:Configuration=%Configuration%;Platform=%arch% /maxcpucount | |
test_script: | |
# temporarily disabled - output will change often so no need for this yet | |
# - cmake . -DTEST_MODE=COMPARE | |
- ctest -C %configuration% --output-on-failure |