forked from Chobolabs/chobo-shl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
46 lines (41 loc) · 986 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# http://www.appveyor.com/docs/appveyor-yml
notifications:
- provider: Email
to:
on_build_status_changed: true
on_build_failure: true
on_build_success: false
clone_depth: 5
branches:
only:
- master
matrix:
fast_finish: false
environment:
matrix:
- platform: x86
configuration: Debug
arch: "Win32"
VS_GEN: "Visual Studio 14 2015"
- platform: x86
configuration: Release
arch: "Win32"
VS_GEN: "Visual Studio 14 2015"
- platform: x64
configuration: Debug
arch: "x64"
VS_GEN: "Visual Studio 14 2015 Win64"
- platform: x64
configuration: Release
arch: "x64"
VS_GEN: "Visual Studio 14 2015 Win64"
before_build:
- cd test
- if not exist vcbuild mkdir vcbuild
- cd vcbuild
- cmake .. -G "%VS_GEN%"
build_script:
- msbuild chobo-shl-test.sln /p:Configuration=%Configuration%;Platform=%arch% /maxcpucount
test_script:
- ctest -C %configuration% --output-on-failure