1language: cpp
2sudo: required
3dist: bionic
4
5os:
6  - linux
7  - osx
8
9compiler:
10  - gcc
11  - clang
12
13matrix:
14  # Actually the same as clang
15  exclude:
16    - os: osx
17      compiler: gcc
18
19before_script:
20  - $CXX --version
21  - cmake --version
22  - export dashboard_model=Experimental
23  - export build_type=Release
24  - export NUMBER_OF_PROCESSORS=2
25
26script:
27  - ctest -V -S test.cmake
28
29notifications:
30  email: false
31  irc:
32    channels:
33      - "chat.freenode.net##Vc"
34    on_success: change
35    on_failure: always
36    use_notice: true
37    skip_join: true
38