blob: f7bd3fe5b44448600710b77fad32c4b78d910acf [file] [log] [blame]
Alexander Afanasyevce306ca2015-12-09 12:59:05 -08001sudo: required
2language: generic
Davide Pesavento09348882016-09-17 02:39:44 +02003env:
4 global:
5 - JOB_NAME=limited-build
Davide Pesavento3cf90782017-08-10 01:21:20 -04006 - WAF_JOBS=2
Davide Pesavento71430482017-06-08 20:06:40 -04007
Alexander Afanasyevce306ca2015-12-09 12:59:05 -08008matrix:
9 include:
Davide Pesavento71430482017-06-08 20:06:40 -040010 # Linux/gcc
Alexander Afanasyevce306ca2015-12-09 12:59:05 -080011 - os: linux
12 dist: trusty
Davide Pesavento09348882016-09-17 02:39:44 +020013 env:
Davide Pesavento71430482017-06-08 20:06:40 -040014 - CXX=g++-4.8
15 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
16 - BUILD_WITH_ASAN=yes
17 - os: linux
18 dist: trusty
19 addons:
20 apt:
21 sources: ubuntu-toolchain-r-test
22 packages: g++-4.9
23 env:
24 - CXX=g++-4.9
25 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
26 - BUILD_WITH_ASAN=yes
27 - os: linux
28 dist: trusty
29 addons:
30 apt:
31 sources: ubuntu-toolchain-r-test
32 packages: g++-5
33 env:
34 - CXX=g++-5
35 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
36 - BUILD_WITH_ASAN=yes
37 - os: linux
38 dist: trusty
39 addons:
40 apt:
41 sources: ubuntu-toolchain-r-test
42 packages: g++-6
43 env:
44 - CXX=g++-6
45 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
46 - BUILD_WITH_ASAN=yes
47 - os: linux
48 dist: trusty
49 addons:
50 apt:
51 sources: ubuntu-toolchain-r-test
52 packages: g++-7
53 env:
54 - CXX=g++-7
55 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
56 # BUILD_WITH_ASAN=yes # bug 4147
57
58 # Linux/clang
59 - os: linux
60 dist: trusty
61 addons:
62 apt:
63 packages: clang-3.5
64 env:
65 - CXX=clang++-3.5
66 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
67 - BUILD_WITH_ASAN=yes
68 - os: linux
69 dist: trusty
70 addons:
71 apt:
72 packages: clang-3.6
73 env:
74 - CXX=clang++-3.6
75 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
76 - BUILD_WITH_ASAN=yes
77 - os: linux
78 dist: trusty
79 addons:
80 apt:
81 sources:
82 - llvm-toolchain-precise-3.7
83 - ubuntu-toolchain-r-test
84 packages: clang-3.7
85 env:
86 - CXX=clang++-3.7
Davide Pesavento09348882016-09-17 02:39:44 +020087 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
Alexander Afanasyevce306ca2015-12-09 12:59:05 -080088 - os: linux
89 dist: trusty
Davide Pesavento71430482017-06-08 20:06:40 -040090 addons:
91 apt:
92 sources:
93 - llvm-toolchain-precise-3.8
94 - ubuntu-toolchain-r-test
95 packages: clang-3.8
Davide Pesavento09348882016-09-17 02:39:44 +020096 env:
Davide Pesavento71430482017-06-08 20:06:40 -040097 - CXX=clang++-3.8
Davide Pesavento09348882016-09-17 02:39:44 +020098 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
Davide Pesavento71430482017-06-08 20:06:40 -040099 - BUILD_WITH_ASAN=yes
100 - os: linux
101 dist: trusty
102 addons:
103 apt:
Davide Pesaventobcf23a32017-09-12 16:45:59 -0400104 sources:
105 - llvm-toolchain-trusty-3.9
106 - ubuntu-toolchain-r-test
Davide Pesavento71430482017-06-08 20:06:40 -0400107 packages: clang-3.9
108 env:
109 - CXX=clang++-3.9
110 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
111 - os: linux
112 dist: trusty
113 addons:
114 apt:
Davide Pesaventobcf23a32017-09-12 16:45:59 -0400115 sources:
116 - llvm-toolchain-trusty-4.0
117 - ubuntu-toolchain-r-test
Davide Pesavento71430482017-06-08 20:06:40 -0400118 packages: clang-4.0
119 env:
120 - CXX=clang++-4.0
121 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
122 - BUILD_WITH_ASAN=yes
Davide Pesaventobcf23a32017-09-12 16:45:59 -0400123 - os: linux
124 dist: trusty
125 addons:
126 apt:
127 sources:
128 - llvm-toolchain-trusty-5.0
129 - ubuntu-toolchain-r-test
130 packages: clang-5.0
131 env:
132 - CXX=clang++-5.0
133 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
134 - BUILD_WITH_ASAN=yes
Davide Pesavento71430482017-06-08 20:06:40 -0400135
136 # macOS/clang
137 # https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version
Alexander Afanasyevce306ca2015-12-09 12:59:05 -0800138 - os: osx
Davide Pesavento71430482017-06-08 20:06:40 -0400139 osx_image: xcode6.4
Davide Pesavento09348882016-09-17 02:39:44 +0200140 env:
Davide Pesavento71430482017-06-08 20:06:40 -0400141 - NODE_LABELS="OSX OSX-10.10"
142 - os: osx
143 osx_image: xcode7.3
144 env:
145 - NODE_LABELS="OSX OSX-10.11"
146 - BUILD_WITH_ASAN=yes
147 - os: osx
148 osx_image: xcode8.3
149 env:
Alexander Afanasyev73996512016-12-29 11:10:14 -0800150 - NODE_LABELS="OSX OSX-10.12"
Davide Pesavento71430482017-06-08 20:06:40 -0400151 - BUILD_WITH_ASAN=yes
Davide Pesavento49650be2017-10-15 22:03:57 -0400152 - os: osx
153 osx_image: xcode9
154 env:
155 - NODE_LABELS="OSX OSX-10.12"
156 - BUILD_WITH_ASAN=yes
Davide Pesavento71430482017-06-08 20:06:40 -0400157
158before_script:
159 - ${CXX:-c++} --version
Davide Pesavento364eeee2017-08-10 00:46:08 -0400160 - python --version
Davide Pesavento71430482017-06-08 20:06:40 -0400161
Alexander Afanasyevb4500d92014-01-17 20:43:24 -0800162script:
Alexander Afanasyeva87e0a82014-10-21 14:09:19 -0400163 - ./.jenkins