-
Notifications
You must be signed in to change notification settings - Fork 84
/
evergreen.yml
568 lines (509 loc) Β· 14.8 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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
# π§ 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 x64
modules: [mongo, mothra]
run_on:
- amazon2-build
tasks:
- name: tg_compile_and_test_with_server_on_amz
- name: t_compile_and_dry_run_asan
- name: amazon2_arm64
display_name: Amazon Linux 2 arm64
modules: [mongo, mothra]
run_on:
- amazon2-arm64-large
tasks:
- name: tg_compile_and_test_with_server_on_amz
- name: t_compile_and_dry_run_asan
- name: amazon2023
display_name: Amazon Linux 2023 x64
modules: [mongo, mothra]
run_on:
- amazon2023.0-large
tasks:
- name: t_compile_and_dry_run
- name: t_compile_and_dry_run_asan
- name: amazon2023_arm64
display_name: Amazon Linux 2023 arm64
modules: [mongo, mothra]
run_on:
- amazon2023.0-arm64-large
tasks:
- name: t_compile_and_dry_run
- name: t_compile_and_dry_run_asan
- name: rhel70
display_name: RHEL 7
modules: [mongo, mothra]
run_on:
- rhel70
tasks:
- name: tg_compile
- name: rhel8
display_name: RHEL 8
modules: [mongo, mothra]
run_on:
- rhel80-test
tasks:
- name: tg_compile
- name: ubuntu2204
display_name: Ubuntu 22.04
modules: [mongo, mothra]
run_on:
- ubuntu2204-large
tasks:
- name: tg_compile
- name: macos-1100
display_name: macOS Big Sur x64
modules: [mongo, mothra]
run_on:
- macos-1100
tasks:
- name: tg_compile_and_test_with_server_on_macos
- name: macos-1100-arm64
display_name: macOS Big Sur arm64
modules: [mongo, mothra]
run_on:
- macos-1100-arm64
tasks:
- name: tg_compile_and_test_with_server_on_macos
- name: validate-genny-tasks
display_name: Validate Genny Tasks
modules: [dsi, PrivateWorkloads]
run_on:
- amazon2-arm64-latest-small
tasks:
- name: validate_genny_tasks
## β‘οΈ Tasks β‘οΈ
tasks:
- name: t_compile
commands:
- func: f_fetch_source
- func: f_compile
- name: t_compile_and_dry_run
commands:
- func: f_fetch_source
- func: f_compile
- func: f_dry_run_variant_auto_tasks
- func: f_dry_run_workloads
- name: t_compile_and_dry_run_asan
commands:
- func: f_fetch_source
- func: f_compile_asan
- func: f_dry_run_variant_auto_tasks
- func: f_dry_run_workloads_asan
- name: t_python_test
commands:
- func: f_python_test
- name: t_lint_workloads
commands:
- func: f_lint_workloads
- name: t_check_generated_docs
commands:
- func: f_check_generated_docs
- name: t_lint_python
commands:
- func: f_fetch_source
- func: f_lint_python
- name: t_cmake_test
commands:
- func: f_cmake_test
- name: t_cmake_test_ignore_flaky
commands:
- func: f_cmake_test_ignore_flaky
- name: t_benchmark_test
commands:
- func: f_benchmark_test
# It's not possible to do a standalone version due to
# some tests' reliance on an apm callback that doesn't
# work on standalone. (Specifically, since read concern
# is irrelevant on a standalone, recent driver versions
# simply omit it.)
- name: t_integration_test_single_node_replset
commands:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- resmoke-test
- --suites
- ../../src/genny/src/resmokeconfig/genny_single_node_replset.yml
- name: t_integration_test_three_node_replset
commands:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- resmoke-test
- --suites
- ../../src/genny/src/resmokeconfig/genny_three_node_replset.yml
- name: t_integration_test_sharded
commands:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- resmoke-test
- --suites
- ../../src/genny/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_new_actor_script # Test the generated yaml file is valid.
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- resmoke-test
- --create-new-actor-test-suite
- name: validate_genny_tasks
commands:
- func: f_fetch_source
- func: f_validate_genny_tasks
## β‘οΈ Task Groups β‘οΈ
task_groups:
- &a_compile_and_test
name: tg_compile_and_test
max_hosts: 1
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
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_and_dry_run.
- t_compile_and_dry_run
- t_python_test
# - t_lint_python
- t_lint_workloads
- t_check_generated_docs
- t_cmake_test
- !!merge <<: *a_compile_and_test
name: tg_compile_and_benchmark
tasks:
- t_compile_and_dry_run
- t_benchmark_test
- !!merge <<: *a_compile_and_test
name: tg_compile_and_test_with_server_on_amz
tasks:
- t_compile
- t_python_test
# - t_lint_python
- t_lint_workloads
- t_check_generated_docs
- t_cmake_test
- 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.
- !!merge <<: *a_compile_and_test
name: tg_compile_and_test_with_server_on_macos
tasks:
- t_compile_and_dry_run
- t_python_test
- t_cmake_test_ignore_flaky
- 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_and_dry_run
## β‘οΈ Functions β‘οΈ
functions:
f_fetch_source:
- command: manifest.load
- command: git.get_project
params:
directory: src/genny
revisions:
mongo: e61bf27c2f6a83fed36e5a13c008a32d563babe2
##
# 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: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- install
f_compile_asan:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- install
- --sanitizer=asan
##
# Runs schedule_variant_auto_tasks as a dry run
# to verify AutoRun logic in all workload YAML files.
##
f_dry_run_variant_auto_tasks:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- auto-tasks
- --tasks
- variant_tasks
- --dry-run
##
# Runs each workload as a dry run
# Requires f_compile to have been run first.
##
f_dry_run_workloads:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- dry-run-workloads
##
# Runs each workload as a dry run
# Requires f_compile_asan to have been run first.
##
f_dry_run_workloads_asan:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- dry-run-workloads
##
# Dry-runs workload generated by f_run_create_new_actor_script
# Requires f_compile to have been run first.
##
f_dry_run_new_actor_script:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- dry-run-workloads
- --workload
- ./src/genny/src/workloads/docs/SelfTestActor.yml
##
# Runs tests via ctest.
# Requires f_compile to have been run first.
##
f_cmake_test:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- cmake-test
##
# Runs tests via ctest, ignoring flaky tests (see EVG-19909).
# Requires f_compile to have been run first.
# Feel free to update regex_clude per the latest test results
##
f_cmake_test_ignore_flaky:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- cmake-test
- --regex-exclude
- "IgnoredOnMacOs"
##
# Runs benchmarks via ctest.
# Requires f_compile to have been run first.
##
f_benchmark_test:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- benchmark-test
##
# Runs tests for the create_new_actor script.
##
f_run_create_new_actor_script:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- create-new-actor
- SelfTestActor
##
# Runs python unit tests.
##
f_python_test:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
# TODO: rename to pytest
- self-test
##
# Runs the YAML linter for Genny workloads
##
f_lint_workloads:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- lint-yaml
- --format
##
# Lint python
##
f_lint_python:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- lint-python
f_check_generated_docs:
- command: shell.exec
params:
script: |
cd src/genny
./run-genny generate-docs
# Check for changes
if git diff --quiet; then
echo 'No changes in the repository'
exit 0
else
echo 'Workload documentation needs to be regenerated. Please run \`./run-genny generate-docs\` and commit the changes.'
exit 1
fi
##
# Reports test results to evergreen API.
##
f_report_test_results:
- command: shell.exec
params:
script: |
pwd
find . -iname '*.xml'
ls build/XUnitXML/*.xml
cat build/XUnitXML/*.xml
- command: attach.xunit_results
params:
file: build/XUnitXML/*.xml
##
# Validate that the auto-generated genny tasks are up to date.
##
f_validate_genny_tasks:
- command: shell.exec
params:
working_dir: src/genny
script: |
set -eu
versions=("master" "8.0" "7.0" "6.0" "5.0")
# Move original files to backup locations
for version in $versions; do
mv evergreen/system_perf/$version/genny_tasks.yml evergreen/system_perf/$version/genny_tasks.bak.yml
done
# Regenerate the genny task files
./run-genny auto-tasks-local --dsi-path ../modules/dsi --private-workloads-path ../modules/PrivateWorkloads
# Validate that the files are identical
for version in $versions; do
original="evergreen/system_perf/$version/genny_tasks.bak.yml"
new="evergreen/system_perf/$version/genny_tasks.yml"
exitCode=0
diff $original $new || exitCode=1
if [ $exitCode -ne 0 ]; then
echo -e '\033[31mThe auto-generated genny task files are not up to date!\033[0m'
echo -e '\033[31mThis typically happens if you are adding a new genny test,\033[0m'
echo -e '\033[31mupdate the AutoRun section of a test, or someone added a new variant in DSI and did not regenerate the files.\033[0m'
echo -e '\033[31mTo resolve this issue, please run ./run-genny auto-tasks-local and commit the new files in the evergreen folder.\033[0m'
exit 1
fi
done
## β‘οΈ Modules β‘οΈ
modules:
- name: mongo
owner: 10gen
repo: mongo
# This prefix is relative to the path in git.get_project
# I.e., src/genny/../../src = ./src
prefix: ../../src
branch: master
- name: mothra
owner: 10gen
repo: mothra
branch: main
- name: dsi
owner: 10gen
repo: dsi
prefix: ../modules
branch: master
auto_update: true
- name: PrivateWorkloads
owner: 10gen
repo: PrivateWorkloads
prefix: ../modules
branch: production
auto_update: true