forked from dartsim/dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (30 loc) · 788 Bytes
/
.travis.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
language: cpp
sudo: required
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
env: BUILD_TYPE=Debug COVERALLS=ON COMPILER=GCC
- os: linux
compiler: gcc
env: BUILD_TYPE=Release COVERALLS=OFF COMPILER=GCC
- os: linux
compiler: clang
env: BUILD_TYPE=Debug COVERALLS=OFF COMPILER=CLANG
- os: linux
compiler: clang
env: BUILD_TYPE=Release COVERALLS=OFF COMPILER=CLANG
- os: osx
compiler: clang
env: BUILD_TYPE=Debug COVERALLS=OFF COMPILER=CLANG
- os: osx
compiler: clang
env: BUILD_TYPE=Release COVERALLS=OFF COMPILER=CLANG
install:
- 'ci/install.sh'
script:
- 'ci/script.sh'
after_failure:
- cat Testing/Temporary/LastTest.log
- cat Testing/Temporary/LastTestsFailed.log