summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 46895e0c6c666502a41269c9e692538af2ffd063 (plain)
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
version: 2.2.{build}

branches:
# whitelist
    only:
        - master
        - appveyor

environment:
  matrix:
    - VSVER: Visual Studio 12 2013 Win64
    - os: Visual Studio 2015
      VSVER: Visual Studio 14 2015 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
    on_build_success: true
    on_build_failure: true
    on_build_status_changed: false
  - provider: Email
    to:
      - kirk.shoop@microsoft.com
    on_build_success: true
    on_build_failure: true
    on_build_status_changed: false