forked from duckstax/actor-zeta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (55 loc) · 1.34 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
dist: trusty
language: cpp
script:
- mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_COMPILER=$COMPILER
- cmake --build . -- VERBOSE=1
env:
- BUILD_TYPE=Release COMPILER=g++-4.9
- BUILD_TYPE=Release COMPILER=g++-5
- BUILD_TYPE=Release COMPILER=g++-6
- BUILD_TYPE=Release COMPILER=clang++-3.9
- BUILD_TYPE=Release COMPILER=clang++-4.0
- BUILD_TYPE=Debug COMPILER=g++-4.9
- BUILD_TYPE=Debug COMPILER=g++-5
- BUILD_TYPE=Debug COMPILER=g++-6
- BUILD_TYPE=Debug COMPILER=clang++-3.9
- BUILD_TYPE=Debug COMPILER=clang++-4.0
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-3.9
- llvm-toolchain-trusty-4.0
packages:
- g++-4.9
- g++-5
- g++-6
- clang-3.9
- clang-4.0
matrix:
include:
- os: osx
osx_image: xcode6.4
env: BUILD_TYPE=Debug
- os: osx
osx_image: xcode7.3
env: BUILD_TYPE=Debug
- os: osx
osx_image: xcode8
env: BUILD_TYPE=Debug
- os: osx
osx_image: xcode8.2
env: BUILD_TYPE=Debug
- os: osx
osx_image: xcode6.4
env: BUILD_TYPE=Release
- os: osx
osx_image: xcode7.3
env: BUILD_TYPE=Release
- os: osx
osx_image: xcode8
env: BUILD_TYPE=Release
- os: osx
osx_image: xcode8.2
env: BUILD_TYPE=Release