-
Notifications
You must be signed in to change notification settings - Fork 395
/
appveyor.yml
59 lines (48 loc) · 1.04 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
version: 2.2.{build}
branches:
# whitelist
only:
- main
- appveyor
image: Visual Studio 2017
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
VSVER: Visual Studio 14 2015 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
VSVER: Visual Studio 15 2017 Win64
platform:
- x64
configuration:
- Release
install:
- cmake --version
- git submodule -q update --init
before_build:
- cmake -G"%VSVER%" .
build:
project: build\rxcpp.sln
test_script:
- cd build\test\
- ctest -V -C Release
- cd ..\..
artifacts:
- path: Rx\v2\src\
name: rxcpp source
type: zip
- path: Rx\v2\examples\
name: rxcpp examples
type: zip
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/4c53c094183ccaa8d059
method: POST
on_build_success: true
on_build_failure: true
on_build_status_changed: false
- provider: Email
to:
on_build_success: true
on_build_failure: true
on_build_status_changed: false