summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7af6eb06533be3f054a1decbf93d987d989c2272 (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
language: cpp

compiler:
  - clang

env:
  - BUILD_TYPE=RelWithDebInfo
  - BUILD_TYPE=Release

install:
  - brew update
  - brew install cmake
  - cmake -GXcode -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
  - cd Build
  - xcodebuild
  - cd ..

script:
  - cd Build
  - ctest -V
  - cd ..

branches:
  only:
    - master
notifications:
  recipients:
    - kirk.shoop@microsoft.com
  email:
    on_success: change
    on_failure: always

os:
  - osx