blob: 5f15002c5e799da4ff203c5e55d3ccc8f993cec6 [file] [log] [blame]
hardlyb1e7e142014-08-06 00:43:51 +03001# http://www.appveyor.com/docs/appveyor-yml
2
3notifications:
4 - provider: Email
5 to:
6 - vik.kirilov@gmail.com
7 on_build_status_changed: true
8 on_build_failure: true
9 on_build_success: false
10 # gitter
11 - provider: Webhook
12 url: https://webhooks.gitter.im/e/3a78202a235c0325e516
13 on_build_status_changed: true
14 on_build_failure: true
15 on_build_success: false
16
17clone_depth: 5
18branches:
19 except:
20 - gh-pages
21 - coverity_scan
22
23matrix:
24 fast_finish: true
25
26environment:
27 matrix:
28 - platform: x86
29 configuration: Debug
30 arch: "Win32"
31 VS_GEN: ""
32 - platform: x86
33 configuration: Release
34 arch: "Win32"
35 VS_GEN: ""
36 - platform: x64
37 configuration: Debug
38 arch: "x64"
39 VS_GEN: " Win64"
40 - platform: x64
41 configuration: Release
42 arch: "x64"
43 VS_GEN: " Win64"
44
45before_build:
46 - cmake . -G "Visual Studio 14 2015%VS_GEN%"
47build_script:
48 - msbuild all.sln /p:Configuration=%Configuration%;Platform=%arch% /maxcpucount
49test_script:
50# temporarily disabled - output will change often so no need for this yet
51# - cmake . -DTEST_MODE=COMPARE
52 - ctest -C %configuration% --output-on-failure