forked from mongodb/genny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevergreen.yml
540 lines (482 loc) Β· 13.5 KB
/
evergreen.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
# π§ Genny π§ββοΈ
#
# This file defines how this project is built by evergreen at
#
# https://evergreen.mongodb.com/waterfall/genny
#
# 1. Indent using 2 spaces. Structures start on indents (e.g. dashes aren't
# indented). Don't quote unnecessarily.
#
# 2. Use `f_` prefix for function names and `t_` prefix for task names.
#
# This allows
#
# 1. grep for all usage of a function/task without colliding with
# inline shell etc.
# 2. grep for definition of a function `FOO` by grepping for `f_FOO:`
# (with a colon)
#
# 3. Put comments in yaml not in inline shell.
#
# 4. Keep yaml anchors/aliases to a minimum and always prefix with `a_`
# for similar grep-ability. Favor functions and tasks with
# dependencies.
#
# 5. Always use functions for all task-bodies and pre/post-bodies rather
# than inlines. This keeps the overall logic separate from the
# implementation.
#
# 6. Maintain one blank line between each unit (each function, task,
# variant etc). Two lines between each section.
#
# 7. Don't change the order of the sections. Goal is to start with "entry
# points" (variants) and then define children in breadth-first order.
#
# 8. Functions that are non-obvious must have a comment with the existing
# comment style.
#
# 9. Any function that requires parameters or `${}`-style expansions must
# document those parameters appropriately such that callers don't need
# to read the function definition to figure out what they mean.
#
# π§ββοΈ
## β‘οΈ Variants β‘οΈ
ignore:
- "*.md" # don't schedule tests if a commit only changes markdown files
buildvariants:
- name: amazon2
display_name: Amazon Linux 2
modules: ~
run_on:
- amazon2-build
expansions:
distro: amazon2
# latest successful build from master as of 2019-04-22 on "SSL Amazon Linux 2" compile task "Binaries" file
# commit should match that in get-mongo-source.sh
mongodb_archive_url:
https://s3.amazonaws.com/mciuploads/mongodb-mongo-master/amazon2/cda363f65bde8d93a7c679757efd3edf7c6e8ad9/binaries/mongo-mongodb_mongo_master_amazon2_cda363f65bde8d93a7c679757efd3edf7c6e8ad9_19_04_22_14_29_27.tgz
tasks:
- name: tg_compile_and_test_with_server
- name: t_push
- name: rhel70
display_name: RHEL 7
modules: ~
expansions:
distro: rhel70
run_on:
- rhel70
tasks:
- name: tg_compile
- name: t_push
- name: rhel8
display_name: RHEL 8
modules: ~
expansions:
distro: rhel8
run_on:
- rhel80-test
tasks:
- name: tg_compile
- name: t_push
- name: ubuntu1804
display_name: Ubuntu 18.04
modules: ~
expansions:
distro: ubuntu1804
run_on:
- ubuntu1804-build
tasks:
- name: tg_compile
- name: t_push
- name: macos-1014
display_name: macOS Mojave
modules: ~
run_on:
- macos-1014
tasks:
- name: tg_compile
- name: t_push
- name: centos6-perf
display_name: CentOS 6 for Performance
modules: ~
expansions:
distro: rhel62
run_on:
- centos6-perf
tasks:
- name: tg_compile_and_benchmark
## β‘οΈ Tasks β‘οΈ
tasks:
- name: t_compile
commands:
- func: f_fetch_source
- func: f_compile
- func: f_dry_run_workloads
- func: f_push_patch
vars:
display_name: Genny
short_name: genny
install_dir: src/dist
- name: t_push
depends_on: t_compile
patchable: false
commands:
- func: f_push_official
vars:
display_name: Genny
short_name: genny
- name: t_mongo_server
commands:
- func: f_checkout_mongodb
- name: t_python_test
commands:
- func: f_python_test
- name: t_lint_workloads
commands:
- func: f_lint_workloads
- name: t_cmake_test
commands:
- func: f_cmake_test
- name: t_benchmark_test
commands:
- func: f_benchmark_test
- name: t_integration_test_standalone
commands:
- func: f_resmoke_test
vars:
resmoke_test_args: "--suites src/resmokeconfig/genny_standalone.yml"
- name: t_integration_test_single_node_replset
commands:
- func: f_resmoke_test
vars:
resmoke_test_args: "--suites src/resmokeconfig/genny_single_node_replset.yml"
- name: t_integration_test_three_node_replset
commands:
- func: f_resmoke_test
vars:
resmoke_test_args: "--suites src/resmokeconfig/genny_three_node_replset.yml"
- name: t_integration_test_sharded
commands:
- func: f_resmoke_test
vars:
resmoke_test_args: "--suites src/resmokeconfig/genny_sharded.yml"
# Must run this task last to avoid polluting test results with tests generated
# by the new actor.
- name: t_test_create_new_actor_script
commands:
- func: f_run_create_new_actor_script
- func: f_compile
- func: f_dry_run_workloads # Test the generated yaml file is valid.
- func: f_resmoke_test
vars:
resmoke_test_args: "--create-new-actor-test-suite"
## β‘οΈ Task Groups β‘οΈ
task_groups:
- &a_compile_and_test
name: tg_compile_and_test
max_hosts: 1
setup_task:
- func: f_remove_test_results_files
teardown_task:
# Attaching results is prohibited in "teardown_group".
# So we call it in "teardown_task" but make the result file optional.
- func: f_report_test_results
- func: f_remove_test_results_files
tasks:
# Rely on implicit dependencies in task_groups where tasks are executed
# in the order they're defined. Tasks with explicit "depends_on" tasks
# may conflict with task_group's implicit dependency, causing
# unexpected behavior.
#
# For this task group, the implicit dependency is that t_*_test has to
# run after t_compile.
- t_compile
- t_python_test
- t_lint_workloads
- t_cmake_test
- <<: *a_compile_and_test
name: tg_compile_and_benchmark
tasks:
- t_compile
- t_benchmark_test
- <<: *a_compile_and_test
name: tg_compile_and_test_with_server
tasks:
- t_compile
- t_mongo_server
- t_python_test
- t_cmake_test
- t_integration_test_standalone
- t_integration_test_single_node_replset
- t_integration_test_three_node_replset
- t_integration_test_sharded
- t_test_create_new_actor_script # Must run this task last.
- name: tg_compile
max_hosts: 1
tasks:
- t_compile
## β‘οΈ Functions β‘οΈ
functions:
f_fetch_source:
- command: git.get_project
params:
directory: src
##
# Download the mongodb binary and then clone and checkout the appropriate
# mongodb repository branch that contains the intended gennylib test case
# (SERVER-38646). Also installs resmoke dependencies.
#
# Expansions:
# mongodb_archive_url: url to download pre-compiled mongo from
##
f_checkout_mongodb:
- command: subprocess.exec
params:
working_dir: src
binary: /bin/bash
args:
- "${workdir}/src/scripts/get-mongo-source.sh"
- command: shell.exec
params:
working_dir: src/build/mongo
shell: /bin/bash
script: |
set -euo pipefail
curl -LSs "${mongodb_archive_url}" -o mongodb.tgz
tar --strip-components=1 -zxvf mongodb.tgz
##
# Archive an installed library into a tarball and upload it with
# revision suffix.
#
# Expansions:
# install_dir: The directory in which this dependency was installed
# short_name: The name for the folder and prefix for the tarball to push
# display_name: The name to show in evergreen
# aws_key: aws key
# aws_secret: aws secret key
# project: evergreen project name (genny)
# build_id: evergreen build id
###
f_push_patch:
- command: archive.targz_pack
params:
source_dir: ${install_dir|dist}
target: ${short_name}.tgz
include:
- "./**"
- command: shell.exec
params:
working_dir: .
shell: bash
script: |
set -o errexit
# Make sure we have a file, give more info
find . -iname *.tgz -exec stat {} \;
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: ${short_name}.tgz
remote_file: ${project}/patches/${build_id}/${short_name}.tgz
bucket: mciuploads
permissions: public-read
content_type: ${content_type|application/gzip}
display_name: ${display_name} Patch
##
# Copy the library tarball for a given revision to the official path
#
# Expansions:
# short_name: The name for the folder and prefix for the tarball to push
# display_name: The name to show in evergreen
# aws_key: aws key
# aws_secret: aws secret key
# project: evergreen project name (genny)
# build_id: evergreen build id
# build_variant: build variant (used in s3 path)
###
f_push_official:
- command: s3.get
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: ${short_name}.tgz
remote_file: ${project}/patches/${build_id}/${short_name}.tgz
bucket: mciuploads
permissions: public-read
content_type: ${content_type|application/gzip}
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: ${short_name}.tgz
remote_file:
${project}/${short_name}/${short_name}-${build_variant}-${revision}.tgz
bucket: mciuploads
permissions: public-read
content_type: ${content_type|application/gzip}
display_name: "${display_name} - ${revision}"
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: ${short_name}.tgz
remote_file: ${project}/${short_name}/${short_name}-${build_variant}.tgz
bucket: mciuploads
permissions: public-read
content_type: ${content_type|application/gzip}
display_name: ${display_name}
##
# Compile the project in src/build.
#
# We always remove the toolchain and curator directories because hosts
# may have incomplete or invalid toolchain directories from
# previous (unsuccessful) builds in the gennytoolchain project.
##
f_compile:
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -eo pipefail
rm -rf /data/mci/gennytoolchain*
export DEVELOPER_DIR="/Applications/Xcode10.1.app"
./scripts/lamp \
-d=${distro|not-linux} \
-DENABLE_JASPER:BOOL=ON \
-DGENNY_INSTALL_DIR:PATH="$PWD"/dist \
-DGENNY_INSTALL_SSL:BOOL=ON
##
# Runs each workload as a dry run
# Requires f_compile to have been run first.
##
f_dry_run_workloads:
- command: subprocess.exec
params:
working_dir: src
binary: /bin/bash
args:
- scripts/dry-run-workloads.sh
env:
GENNY: scripts/genny
##
# Runs tests via ctest.
# Requires f_compile to have been run first.
##
f_cmake_test:
- command: shell.exec
params:
continue_on_err: true
working_dir: src
shell: bash
script: |
set -euo pipefail
./scripts/lamp cmake-test
##
# Runs benchmarks via ctest.
# Requires f_compile to have been run first.
##
f_benchmark_test:
- command: shell.exec
params:
continue_on_err: true
working_dir: src
shell: bash
script: |
set -euo pipefail
./scripts/lamp benchmark-test
##
# Runs tests via resmoke.
# Requires f_compile to have been run first.
##
f_resmoke_test:
- command: shell.exec
params:
continue_on_err: true
working_dir: src
shell: bash
script: |
set -eou pipefail
./scripts/lamp resmoke-test ${resmoke_test_args}
##
# Runs tests for the create_new_actor script.
##
f_run_create_new_actor_script:
- command: subprocess.exec
params:
working_dir: src
binary: /bin/bash
args:
- ${workdir}/src/scripts/create-new-actor.sh
- SelfTestActor
##
# Runs python unit tests.
##
f_python_test:
- command: shell.exec
params:
continue_on_err: true
working_dir: src
shell: bash
script: |
set -eou pipefail
# for python3
export PATH=/opt/mongodbtoolchain/v3/bin:$PATH
# Run Genny Python unit tests
pushd src/python
python3 setup.py nosetests
popd
# Run Genny build scripts unit tests
./scripts/lamp self-test
##
# Runs the YAML linter for Genny workloads
##
f_lint_workloads:
- command: shell.exec
params:
continue_on_err: true
working_dir: src
shell: bash
script: |
set -eo pipefail
export PATH=/opt/mongodbtoolchain/v3/bin:$PATH
python3 -m virtualenv venv
source venv/bin/activate
# Install Genny python scripts into the virtualenv
pushd src/python
python3 setup.py install
popd
lint-workloads
##
# Reports test results to evergreen API.
#
# If you add a new file to this list, then you should also
# add it to the `f_remove_test_results_files` function to
# ensure it is cleaned up between tasks in the task group.
##
f_report_test_results:
- command: attach.xunit_results
params:
optional: true
file: src/build/src/*/*.junit.xml
- command: attach.xunit_results
params:
optional: true
file: src/build/*.junit.xml
- command: attach.xunit_results
params:
optional: true
file: src/src/python/nosetests.xml
##
# Removes the test results files from the local filesystem.
##
f_remove_test_results_files:
- command: shell.exec
params:
shell: bash
script: |
set -eou pipefail
rm -f \
src/build/*.junit.xml \
src/build/src/*/*.junit.xml \
src/src/python/nosetests.xml