forked from mongodb/genny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evergreen.yml
380 lines (337 loc) Β· 8.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
# π§ 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: [mongo]
run_on:
- amazon2-build
expansions:
distro: amazon2
# latest successful build from master as of 2020-10-01 on "Amazon Linux 2" compile task "Binaries" file
# commit should match that in get-mongo-source.sh
mongodb_archive_url:
https://mciuploads.s3.amazonaws.com/mongodb-mongo-master/amazon2/298d4d6bbb9980b74bded06241067fe6771bef68/binaries/mongo-mongodb_mongo_master_amazon2_298d4d6bbb9980b74bded06241067fe6771bef68_20_10_22_00_55_19.tgz
tasks:
- name: tg_compile_and_test_with_server
- name: rhel70
display_name: RHEL 7
modules: [mongo]
expansions:
distro: rhel70
run_on:
- rhel70
tasks:
- name: tg_compile
- name: rhel8
display_name: RHEL 8
modules: [mongo]
expansions:
distro: rhel8
run_on:
- rhel80-test
tasks:
- name: tg_compile
- name: ubuntu1804
display_name: Ubuntu 18.04
modules: [mongo]
expansions:
distro: ubuntu1804
run_on:
- ubuntu1804-build
tasks:
- name: tg_compile
- name: macos-1014
display_name: macOS Mojave
modules: [mongo]
run_on:
- macos-1014
tasks:
- name: tg_compile
- name: centos6-perf
display_name: CentOS 6 for Performance
modules: [mongo]
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
- name: t_python_test
commands:
- func: f_python_test
- name: t_lint_workloads
commands:
- func: f_lint_workloads
- name: t_lint_python
commands:
- func: f_lint_python
- name: t_cmake_test
commands:
- func: f_cmake_test
- 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_workloads # 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
## β‘οΈ 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.
- t_compile
- t_python_test
- t_lint_python
- 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_python_test
- t_lint_python
- t_lint_workloads
- 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.
- name: tg_compile
max_hosts: 1
tasks:
- t_compile
## β‘οΈ Functions β‘οΈ
functions:
f_fetch_source:
- command: manifest.load
- command: git.get_project
params:
directory: src/genny
revisions:
mongo: 298d4d6bbb9980b74bded06241067fe6771bef68
##
# 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
- --linux-distro=${distro|not-linux}
##
# 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 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 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
##
# Lint python
##
f_lint_python:
- command: subprocess.exec
params:
binary: ./src/genny/run-genny
args:
- -v
- lint-python
##
# 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
## β‘οΈ Modules β‘οΈ
modules:
- name: mongo
repo: [email protected]:mongodb/mongo.git
# This prefix is relative to the path in git.get_project
# I.e., src/genny/../../src = ./src
prefix: ../../src
branch: master