forked from mongodb/mongo-cxx-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mci.yml
422 lines (381 loc) · 13 KB
/
.mci.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
#######################################
# CXX Driver Config for MCI #
#######################################
## Some variables for convenience:
cxx_driver_variables:
## The basic set of tests to run on most buildvariants
basic_test_list: &basic_tests
- name: "compile"
- name: "unit test"
- name: "integration test"
- name: "client test"
## Common download urls (merge in as hashes)
mongo_download_urls:
ubuntu1404: &mongo_url_ubuntu1404
mongo_url: "http://downloads.10gen.com/linux/mongodb-linux-x86_64-enterprise-ubuntu1404-2.6.4.tgz"
windows64-bit: &mongo_url_windows64
mongo_url: "http://downloads.10gen.com/win32/mongodb-win32-x86_64-enterprise-windows-64-2.6.4.zip"
rhel55: &mongo_url_rhel55
mongo_url: "downloads.mongodb.org/linux/mongodb-linux-x86_64-rhel55-latest.tgz"
## Common mongodb arguments
mongodb_arguments:
standard: &mongodb_args
mongodb_args: "--dbpath /data/db --port 27999 --httpinterface --nopreallocj --setParameter=enableTestCommands=1 &"
## Common sets of scons flags
scons_flags:
standard: &scons_flags_64
scons_flags: "--64 -j$(grep -c ^processor /proc/cpuinfo) --ssl --use-sasl-client --sharedclient"
## test all plausible combinations of static/dynamic mongo client and windows runtime:
ubuntu_c++11: &scons_flags_cpp11
scons_flags: "--64 --c++11 -j$(grep -c ^processor /proc/cpuinfo) --ssl --use-sasl-client --sharedclient"
static_windows: &scons_flags_64_windows_static
scons_flags: "--64 -j$(grep -c ^processor /proc/cpuinfo) --ssl --use-sasl-client"
dynamic_RT_windows: &scons_flags_64_windows_dynamic_rt
scons_flags: "--64 -j$(grep -c ^processor /proc/cpuinfo) --ssl --use-sasl-client --dynamic-windows"
dynamic_windows: &scons_flags_64_windows_dynamic
scons_flags: "--64 -j$(grep -c ^processor /proc/cpuinfo) --ssl --use-sasl-client --dynamic-windows --sharedclient"
## Common compile flags
compile_flags:
basic: &compile_flags
compile_flags: ""
debug: &compile_flags_debug
compile_flags: "--dbg=on"
## Paths for Windows builds
windows_paths:
## DLL paths
dll:
dll_msvc2010: &dllpath_msvc2010
dllpath: --dllpath="c:\local\boost_1_55_0\lib64-msvc-10.0;c:\openssl\bin;c:\sasl\bin"
dll_mscv2013: &dllpath_msvc2013
dllpath: --dllpath="c:\local\boost_1_56_0\lib64-msvc-12.0;c:\openssl\bin;c:\sasl\bin"
## C++ paths
cpp:
cpp_boost_1_55_0: &cpppath_boost_1_55_0
cpppath: --cpppath="c:\local\boost_1_55_0"
cpp_boost_1_56_0: &cpppath_boost_1_56_0
cpppath: --cpppath="c:\local\boost_1_56_0"
## Extras
extra:
basic_extras: &extrapath
extrapath: --extrapath="c:\openssl,c:\sasl"
## Library paths
lib:
lib_msvc2010: &libpath_msvc2010
libpath: --libpath="c:\local\boost_1_55_0\lib64-msvc-10.0"
lib_msvc2013: &libpath_msvc2013
libpath: --libpath="c:\local\boost_1_56_0\lib64-msvc-12.0"
## OS name
os_names:
windows_64: &os_name_windows64
os_name: "windows-64"
rhel55: &os_name_rhel55
os_name: "rhel55"
ubuntu1404: &os_name_ubuntu1404
os_name: "ubuntu1404"
## Toolchain options for windows
windows_toolchains:
msvc2010: &toolchain_msvc2010
toolchain_flags: --msvc-version=10.0
msvc2012: &toolchain_msvc2012
toolchain_flags: --msvc-version=11.0
msvc2013: &toolchain_msvc2013
toolchain_flags: --msvc-version=12.0
## Paths and flags for RHEL 5.5 builds
rhel55_fixups:
scons:
warning_flags: &warning_flags_rhel55
# For some reason GCC on RHEL 5.5 gives lots of warnings from its own headers when using
# visibility attributes.
warning_flags: --disable-warnings-as-errors
cpp:
cpp_boost: &cpppath_rhel55
cpppath: --cpppath="/usr/include/boost141"
lib:
lib32_boost: &libpath_rhel55_32
libpath: --libpath="/usr/lib/boost141"
lib64_boost: &libpath_rhel55_64
libpath: --libpath="/usr/lib64/boost141"
#######################################
# Functions #
#######################################
functions:
"fetch source" :
command: git.get_project
params:
directory: mongo-cxx-driver
"fetch mongodb" :
command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o verbose
set -o errexit
curl -s ${mongo_url} --output mongo_enterprise.${ext|tgz}
${decompress} mongo_enterprise.${ext|tgz}
cp mongodb*${os_name}*/bin/mongod${extension} ./mongod${extension}
chmod +x ./mongod${extension}
"fetch artifacts" :
command: s3.get
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: mongo-cxx-driver/${build_variant}/${revision}/artifacts/mongo-${build_id}.tar.gz
bucket: mciuploads
extract_to: mongo-cxx-driver
pre:
- command: expansions.fetch
params:
keys:
- local_key: "aws_key"
remote_key: "project_aws_key"
- local_key: "aws_secret"
remote_key: "project_aws_secret"
- command: shell.exec
params:
script: |
rm -rf "mongo-cxx-driver"
rm -rf /data/db
mkdir -p /data/db
post:
- command: shell.exec
params:
script: |
${killall_mci|pkill mongo; pkill -9 mongod; pkill -9 mongos; pkill -f buildlogger.py; pkill -f smoke.py}
#######################################
# Tasks #
#######################################
tasks:
- name: lint
commands:
- func: "fetch source"
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o errexit
set -o verbose
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} lint
- name: compile
commands:
- func: "fetch source"
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o errexit
set -o verbose
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} all
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o errexit
set -o verbose
tar -czf ../mongo-cxx-driver.tar.gz .
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-cxx-driver.tar.gz
remote_file: mongo-cxx-driver/${build_variant}/${revision}/artifacts/mongo-${build_id}.tar.gz
bucket: mciuploads
permissions: public-read
content_type: ${content_type|application/x-gzip}
- name: "unit test"
depends_on:
- name: "compile"
commands:
- func: "fetch artifacts"
- func: "fetch mongodb"
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o verbose
echo "Starting mongod..."
./mongod${extension} ${mongodb_args}
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} unit
exit_code=$?
${killall_mci|pkill mongo; pkill -9 mongod; pkill -9 mongos; pkill -f buildlogger.py; pkill -f smoke.py} || true
exit $exit_code
- name: "integration test"
depends_on:
- name: "compile"
commands:
- func: "fetch artifacts"
- func: "fetch mongodb"
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o verbose
echo "Starting mongod..."
./mongod${extension} ${mongodb_args}
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} integration
exit_code=$?
${killall_mci|pkill mongo; pkill -9 mongod; pkill -9 mongos; pkill -f buildlogger.py; pkill -f smoke.py} || true
exit $exit_code
- name: "client test"
depends_on:
- name: "compile"
commands:
- func: "fetch artifacts"
- func: "fetch mongodb"
- command: shell.exec
params:
working_dir: "mongo-cxx-driver"
script: |
set -o verbose
echo "Starting mongod..."
./mongod${extension} ${mongodb_args}
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} install # static lib install step
install_exit=$?
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} check-install # static build installation header check
check_exit=$?
${scons|scons} ${scons_flags} ${warning_flags} ${compile_flags} ${toolchain_flags} ${extrapath} ${dllpath} ${cpppath} ${libpath} examples
smoke_exit=$?
${killall_mci|pkill mongo; pkill -9 mongod; pkill -9 mongos; pkill -f buildlogger.py; pkill -f smoke.py}
exit $install_exit || $check_exit || $smoke_exit
#######################################
# Buildvariants #
#######################################
buildvariants:
#######################################
# Linux Buildvariants #
#######################################
## RHEL 5.5
- name: rhel55
display_name: "RHEL 5.5"
expansions:
<<: *os_name_rhel55
<<: *compile_flags
<<: *scons_flags_64
<<: *warning_flags_rhel55
<<: *cpppath_rhel55
<<: *libpath_rhel55_64
<<: *mongodb_args
<<: *mongo_url_rhel55
run_on:
- rhel55-test
tasks: *basic_tests
## Ubuntu 1404
- name: ubuntu1404
display_name: "Ubuntu1404"
expansions:
<<: *os_name_ubuntu1404
<<: *compile_flags
<<: *scons_flags_64
<<: *mongodb_args
<<: *mongo_url_ubuntu1404
run_on:
- ubuntu1404-test
tasks: *basic_tests
## Ubuntu 1404 DEBUG
- name: ubuntu1404-debug
display_name: "Ubuntu1404 dbg"
expansions:
<<: *os_name_ubuntu1404
<<: *compile_flags_debug
<<: *scons_flags_64
<<: *mongodb_args
<<: *mongo_url_ubuntu1404
run_on:
- ubuntu1404-test
tasks: *basic_tests
## Ubuntu 1404 C++11
- name: ubuntu1404-cpp11
display_name: "Ubuntu1404 C++11"
expansions:
<<: *os_name_ubuntu1404
<<: *compile_flags
<<: *scons_flags_cpp11
<<: *mongodb_args
<<: *mongo_url_ubuntu1404
run_on:
- ubuntu1404-test
tasks: *basic_tests
#######################################
# Windows Buildvariants #
#######################################
## Windows 64-bit (msvc2010)
## static client and RT
- name: windows-64-msvc2010-static-static
display_name: "Win64(2010) static-static"
expansions:
## basic compilation and installation
<<: *os_name_windows64
<<: *compile_flags
<<: *scons_flags_64_windows_static
<<: *toolchain_msvc2010
<<: *mongodb_args
<<: *mongo_url_windows64
## additional paths for windows builds
<<: *dllpath_msvc2010
<<: *libpath_msvc2010
<<: *extrapath
<<: *cpppath_boost_1_55_0
extension: ".exe"
scons: scons.bat
run_on:
- windows-64-test
tasks: *basic_tests
## Windows 64-bit DEBUG DYNAMIC (msvc2010)
## dynamic client and RT
- name: windows-64-msvc2010-dbg-dyn-dyn
display_name: "Win64(2010) dbg dyn-dyn"
expansions:
<<: *os_name_windows64
<<: *compile_flags_debug
<<: *scons_flags_64_windows_dynamic
<<: *toolchain_msvc2010
<<: *mongodb_args
<<: *mongo_url_windows64
<<: *dllpath_msvc2010
<<: *libpath_msvc2010
<<: *extrapath
<<: *cpppath_boost_1_55_0
extension: ".exe"
scons: scons.bat
run_on:
- windows-64-test
tasks: *basic_tests
## Windows 64-bit DYNAMIC (msvc2013)
## dynamic client and RT
- name: windows-64-msvc2013-dyn-dyn
display_name: "Win64(2013) dyn-dyn"
expansions:
<<: *os_name_windows64
<<: *compile_flags
<<: *scons_flags_64_windows_dynamic
<<: *toolchain_msvc2013
<<: *mongodb_args
<<: *mongo_url_windows64
<<: *dllpath_msvc2013
<<: *libpath_msvc2013
<<: *extrapath
<<: *cpppath_boost_1_56_0
extension: ".exe"
scons: scons.bat
run_on:
- windows-64-vs2013-test
tasks: *basic_tests
## Windows 64-bit (msvc2013) DYNAMIC-RT
## static client, dynamic RT
- name: windows-64-msvc-2013-static-dyn
display_name: "Win64(2013) static-dyn"
expansions:
<<: *os_name_windows64
<<: *compile_flags
<<: *scons_flags_64_windows_dynamic_rt
<<: *toolchain_msvc2013
<<: *mongodb_args
<<: *mongo_url_windows64
<<: *dllpath_msvc2013
<<: *libpath_msvc2013
<<: *extrapath
<<: *cpppath_boost_1_56_0
extension: ".exe"
scons: scons.bat
run_on:
- windows-64-vs2013-test
tasks: *basic_tests