blob: 5f15002c5e799da4ff203c5e55d3ccc8f993cec6 [file] [log] [blame]
# 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