forked from mongodb/mongo-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common-pvt.yml
406 lines (360 loc) · 9.73 KB
/
common-pvt.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
#######################################
# Tools Driver Config for MCI #
#######################################
# default command type
command_type: system
# run the same task in the previous revision if the current task fails
stepback: true
mongo_tools_variables:
mongo_tools_task_lists:
atlas_live_test_task_list: &atlas_live_tasks
- dist
- test_atlas_free
- test_atlas_replica
- test_atlas_sharded
- test_atlas_tls11
- test_atlas_tls12
functions:
"build tool":
command: shell.exec
type: test
params:
working_dir: src/github.com/mongodb/mongo-tools
script: |
set -x
set -v
set -e
echo "Building ${tool}..."
if [ "Windows_NT" = "$OS" ]; then
set -o igncr
fi;
# In RHEL 5.5, /usr/bin/ld can't handle --build-id parameters, so
# use a wrapper if it's present on the system
#
if [ -d /opt/ldwrapper/bin ]
then
export PATH=/opt/ldwrapper/bin:$PATH
fi
. ./set_goenv.sh
GOROOT="" set_goenv || exit
go version
env | grep ^GO
go build -ldflags "$(print_ldflags)" ${args} -tags "$(print_tags failpoints ${build_tags})" -o bin/${tool} ${tool}/main/${tool}.go
./bin/${tool} --version
"fetch tool" :
command: s3.get
params:
bucket: mciuploads
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: src/github.com/mongodb/mongo-tools/bin/${tool}${extension}
remote_file: mongo-tools/binaries/${build_id}/${edition|community}/${tool}${extension}
"upload tool":
command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: src/github.com/mongodb/mongo-tools/bin/${tool}
remote_file: mongo-tools/binaries/${build_id}/${edition|community}/${tool}${extension}
bucket: mciuploads
permissions: public-read
content_type: application/octet-stream
display_name: ${tool}
"fetch source" :
- command: shell.exec
params:
script: |
set -x
set -v
set -e
mkdir -p src/github.com/mongodb
- command: git.get_project
params:
directory: src/github.com/mongodb/mongo-tools
- command: git.apply_patch
params:
directory: src/github.com/mongodb/mongo-tools
- command: shell.exec
params:
working_dir: src/github.com/mongodb/mongo-tools
script: |
set -x
set -v
set -e
mkdir -p bin
"test_atlas_dump" :
- command: shell.exec
type: test
params:
working_dir: src/github.com/mongodb/mongo-tools
script: |
set -x
set -v
set -e
chmod +x ./bin/mongodump
./bin/mongodump --uri="${uri}" -v
timeout:
- command: shell.exec
params:
silent: true
script: |
set -x
set -v
# don't attempt to abort on any distro which has a special way of
# killing everything (i.e. using taskkill on Windows)
if [ "${killall_mci}" = "" ]; then
all_tools="bsondump mongodump mongoexport mongofiles mongoimport mongorestore mongostat mongotop"
# send SIGABRT to print a stacktrace for any hung tool
pkill -ABRT "^($(echo -n $all_tools | tr ' ' '|'))\$"
# git the processes a second or two to dump their stacks
sleep 10
fi
tasks:
- name: dist
depends_on:
commands:
- func: "fetch source"
# mongodump
- func: "build tool"
vars:
tool: mongodump
- func: "upload tool"
vars:
tool: mongodump
- name: test_atlas_free
commands:
- func: "fetch tool"
vars:
tool: mongodump
- func: test_atlas_dump
vars:
uri: '${atlas_free}'
depends_on:
- name: dist
- name: test_atlas_replica
commands:
- func: "fetch tool"
vars:
tool: mongodump
- func: test_atlas_dump
vars:
uri: '${atlas_replica}'
depends_on:
- name: dist
- name: test_atlas_sharded
commands:
- func: "fetch tool"
vars:
tool: mongodump
- func: test_atlas_dump
vars:
uri: '${atlas_sharded}'
depends_on:
- name: dist
- name: test_atlas_tls11
commands:
- func: "fetch tool"
vars:
tool: mongodump
- func: test_atlas_dump
vars:
uri: '${atlas_tls11}'
depends_on:
- name: dist
- name: test_atlas_tls12
commands:
- func: "fetch tool"
vars:
tool: mongodump
- func: test_atlas_dump
vars:
uri: '${atlas_tls12}'
depends_on:
- name: dist
buildvariants:
#######################################
# Amazon x86_64 Buildvariants #
#######################################
- name: amazonlinux64-enterprise
display_name: Amazon Linux 64 Enterprise
run_on:
- amazon1-2018-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: amazon2-enterprise
display_name: Amazon Linux 64 v2 Enterprise
run_on:
- amazon2-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
#######################################
# Debian x86_64 Buildvariants #
#######################################
- name: debian81-enterprise
display_name: Debian 8.1 Enterprise
run_on:
- debian81-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: debian92-enterprise
display_name: Debian 9.2 Enterprise
run_on:
- debian92-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
#######################################
# macOS Buildvariant #
#######################################
- name: macOS-1014-ssl
display_name: MacOS 10.14 SSL
run_on:
- macos-1014
expansions:
build_tags: "ssl"
tasks: *atlas_live_tasks
#######################################
# RHEL x86_64 Buildvariants #
#######################################
- name: rhel62-enterprise
display_name: RHEL 6.2 Enterprise
run_on:
- rhel62-small
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: rhel70-enterprise
display_name: RHEL 7.0 Enterprise
run_on:
- rhel70-small
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
#######################################
# SUSE x86_64 Buildvariants #
#######################################
- name: suse12-enterprise
display_name: SUSE 12 Enterprise
run_on:
- suse12-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
#######################################
# Ubuntu x86_64 Buildvariants #
#######################################
- name: ubuntu1404-enterprise
display_name: Ubuntu 14.04 Enterprise
run_on:
- ubuntu1404-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: ubuntu1604-enterprise
display_name: Ubuntu 16.04 Enterprise
run_on:
- ubuntu1604-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: ubuntu1804-enterprise
display_name: Ubuntu 18.04 Enterprise
run_on:
- ubuntu1804-test
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
#######################################
# Windows Buildvariants #
#######################################
- name: windows-64-ssl
display_name: Windows 64-bit SSL
run_on:
- windows-64-vs2017-test
expansions:
build_tags: "ssl"
tasks: *atlas_live_tasks
#######################################
# ARM Buildvariants #
#######################################
- name: ubuntu1604-arm64-ssl
display_name: ZAP ARM64 Ubuntu 16.04 SSL
run_on:
- ubuntu1604-arm64-small
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: "ssl"
tasks: *atlas_live_tasks
- name: ubuntu1804-arm64-ssl
display_name: ZAP ARM64 Ubuntu 18.04 SSL
run_on:
- ubuntu1804-arm64-small
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: "ssl"
tasks: *atlas_live_tasks
#######################################
# Power Buildvariants #
#######################################
- name: rhel71-ppc64le-enterprise
display_name: ZAP PPC64LE RHEL 7.1 Enterprise
run_on:
- rhel71-power8-test
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: 'ssl sasl gssapi'
tasks: *atlas_live_tasks
- name: ubuntu1604-ppc64le-enterprise
display_name: ZAP PPC64LE Ubuntu 16.04 Enterprise
run_on:
- ubuntu1604-power8-test
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: 'ssl sasl gssapi'
tasks: *atlas_live_tasks
- name: ubuntu1804-ppc64le-enterprise
display_name: ZAP PPC64LE Ubuntu 18.04 Enterprise
run_on:
- ubuntu1804-power8-test
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: 'ssl sasl gssapi'
tasks: *atlas_live_tasks
#######################################
# Z (s390x) Buildvariants #
#######################################
- name: rhel67-s390x-enterprise
display_name: ZAP s390x RHEL 6.7 Enterprise
run_on:
- rhel67-zseries-test
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: rhel72-s390x-enterprise
display_name: ZAP s390x RHEL 7.2 Enterprise
run_on:
- rhel72-zseries-test
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks
- name: ubuntu1604-s390x-enterprise
display_name: ZAP s390x Ubuntu 16.04 Enterprise
run_on:
- ubuntu1604-zseries-small
stepback: false
batchtime: 10080 # weekly
expansions:
build_tags: "sasl gssapi ssl"
tasks: *atlas_live_tasks