blob: eaf279c5bf7944621803286b7c10fe6adefe8fae [file] [log] [blame]
Alexander Afanasyevf34a3552017-08-13 21:17:05 -04001sudo: required
2language: generic
3env:
4 global:
5 - JOB_NAME=limited-build
6 - WAF_JOBS=2
7
8matrix:
9 include:
10 # Linux/gcc
11 - os: linux
12 dist: trusty
13 env:
14 - 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
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
87 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
88 - os: linux
89 dist: trusty
90 addons:
91 apt:
92 sources:
93 - llvm-toolchain-precise-3.8
94 - ubuntu-toolchain-r-test
95 packages: clang-3.8
96 env:
97 - CXX=clang++-3.8
98 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
99 - BUILD_WITH_ASAN=yes
100 - os: linux
101 dist: trusty
102 addons:
103 apt:
104 sources: llvm-toolchain-trusty-3.9
105 packages: clang-3.9
106 env:
107 - CXX=clang++-3.9
108 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
109 - os: linux
110 dist: trusty
111 addons:
112 apt:
113 sources: llvm-toolchain-trusty-4.0
114 packages: clang-4.0
115 env:
116 - CXX=clang++-4.0
117 - NODE_LABELS="Linux Ubuntu Ubuntu-14.04"
118 - BUILD_WITH_ASAN=yes
119
120 # macOS/clang
121 # https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version
122 - os: osx
123 osx_image: xcode7.3
124 env:
125 - NODE_LABELS="OSX OSX-10.11"
126 - BUILD_WITH_ASAN=yes
127 - os: osx
128 osx_image: xcode8.3
129 env:
130 - NODE_LABELS="OSX OSX-10.12"
131 - BUILD_WITH_ASAN=yes
132
133before_script:
134 - ${CXX:-c++} --version
135 - python --version
136
137script:
138 - ./.jenkins