-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathevergreen.yml
More file actions
357 lines (331 loc) · 8.62 KB
/
evergreen.yml
File metadata and controls
357 lines (331 loc) · 8.62 KB
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
stepback: true
include:
- filename: evergreen.yml
module: trigger-sandbox
pre_error_fails_task: true
pre: &pre
- command: git.get_project
params:
directory: src
- func: create virtualenv
patch_aliases:
- alias: "chaya-tag-from-yaml"
variant_tags: ["commit-queue-variant"]
task: ".*"
buildvariants:
- name: bynns single task thing
display_name: single task test
run_on:
- ubuntu1604-large
tasks:
- name: taskB
run_on:
- bynntest
- name: patch_only_task
depends_on: taskB
run_on:
- bynntest
paths:
- "tests/commit-queue-playground/*"
- display_name: Ubuntu 20.04
name: ubuntu2004
paths:
- "!README.md"
- "!evergreen.yml"
tags: [commit-queue-variant, whaat]
modules:
- trigger-sandbox
- trigger-sandbox2
run_on:
- ubuntu1604-large
expansions:
module_prefix: hello
tasks:
- name: task_generator
- name: unit_tests
- name: validate_commit_message
create_check_run:
path_to_outputs: ""
- name: patch_only_task
- name: batchtime_task
- name: test_passing_param_to_child
- name: test-receiving-parent-param
- name: test-restart-on-fail
batchtime: 1
- name: checkrun_test
create_check_run:
path_to_outputs: "output.json"
- taskA
- taskB
display_tasks:
- name: display_task
execution_tasks:
- validate_commit_message
- display_name: Test Tags
name: release
run_on:
- ubuntu2004-small
tasks:
- name: group1
- name: test-selection
display_name: "Test Selection"
run_on: ubuntu2204-small
tasks:
- test-selection-example
paths:
- "README.md"
- name: git-env-test
display_name: "Giv Env Test"
modules:
- trigger-sandbox
- trigger-sandbox2
run_on:
- ubuntu2004-small
tasks:
- name: test-restart-on-fail
- name: task_generator
create_check_run:
path_to_outputs: "path"
- name: unit_tests
activate: false
display_tasks:
- name: display_task2
execution_tasks:
- unit_tests
- name: cron-test
cron: "*/5 * * * *"
display_name: "Cron Test"
run_on:
- ubuntu2004-small
display_tasks:
- name: displayTask1
execution_tasks:
- test-restart-on-fail
- validate_commit_message
- validate_commit_message2
tasks:
- name: validate_commit_message
- name: validate_commit_message2
- name: test-restart-on-fail
- name: akhi_test_validation
display_name: "Test Empty Task Validation"
run_on:
- ubuntu2204-small
tasks:
- name: test_empty_task_error
functions:
create virtualenv:
- command: shell.exec
params:
working_dir: src
script: |
echo "noop"
git describe
parameters:
- key: my_param
value: hello world1!
description: something to test parameters woot
post:
- command: attach.xunit_results
params:
file: src/junit-*.xml
- command: attach.results
params:
file_location: src/test_selection_results.json
task_groups:
- name: group1
max_hosts: 1
setup_group:
- command: git.get_project
params:
directory: src
tasks:
- test-restart-on-fail
- validate_commit_message
- validate_commit_message2
tasks:
# Test how periodic build that only includes taskA interacts with patch_optional dep.
- name: taskA
depends_on:
- name: taskB
patch_optional: true
commands:
- command: shell.exec
params:
script: echo ${task_name}
- name: taskB
commands:
- command: shell.exec
params:
script: echo ${task_name}
- name: gen_task_template
depends_on:
- name: task_generator
variant: release
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "noop2"
- name: test-restart-on-fail
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "admin bynn: ${bynnbynn}"
exit 1
- name: test_passing_param_to_child
tags: ["my_tag"]
commands:
- command: downstream_expansions.set
params:
file: src/downstream_expansions.yml
- name: test-receiving-parent-param
disable: true
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "parent_param_1: ${evg_param_1}, parent_param_2: ${evg_param_2}"
echo "hello world"
- name: unit_tests
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "PARENT PATCH ID: ${parent_patch_id}, PARENT AS MODULE: ${parent_project_module}, PARENT GITHUB ORG: ${parent_github_org} (should be removed)"
- name: batchtime_task
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "noop2"
- name: validate_commit_message
commands:
- command: shell.exec
params:
script: |
set -o verbose
set -o errexit
sleep 20
if [ "${is_commit_queue}" = "true" ]; then
cat > commit_message.txt <<END_OF_COMMIT_MSG
${commit_message}
END_OF_COMMIT_MSG
commit_message_content=$(cat commit_message.txt)
echo "$commit_message_content"
fi
- name: validate_commit_message2
commands:
- command: shell.exec
params:
script: |
set -o verbose
set -o errexit
sleep 240
if [ "${is_commit_queue}" = "true" ]; then
cat > commit_message.txt <<END_OF_COMMIT_MSG
${commit_message}
END_OF_COMMIT_MSG
commit_message_content=$(cat commit_message.txt)
echo "$commit_message_content"
fi
- name: test-restart
priority: 3
commands:
- command: shell.exec
params:
script: |
echo "sleeping"
ls src
sleep 10
. src/task.sh
echo "triggering restart"
post_evergreen_status failed test "test desc" false true
- command: shell.exec
params:
script: |
echo "sleeping 2"
sleep 10
- command: shell.exec
params:
script: |
echo "sleeping 3"
sleep 10
- name: task_generator
commands:
- command: generate.tasks
params:
files:
- src/generate.json
- name: test_release
depends_on:
- name: unit_tests
variant: "*"
- name: test_release2
depends_on:
- name: test_release
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "i am a script"
- name: patch_only_task
patch_only: true
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "i am patch"
- name: checkrun_test
commands:
- command: shell.exec
params:
working_dir: src
script: |
echo "i am become checkrun"
- name: test-selection-example
commands:
# Run the test_selection.get command to get the recommended list of tests.
- command: test_selection.get
params:
tests_file: src/test_selection_input.json
output_file: src/test_selection_output.json
- command: shell.exec
params:
script: cat src/test_selection_output.json
# Generate dummy test results from the recommended list of tests.
- command: subprocess.exec
params:
binary: python3
working_dir: src
args: ["generate_test_results.py", "test_selection_output.json"]
- name: test_empty_task_error
#commands:
#- command: shell.exec
#params:
#script: |
#echo "test - test_empty_task_error"
# Intentionally leaving this task with no commands to trigger the error
modules:
- name: trigger-sandbox
repo: git@github.com:evergreen-ci/commit-queue-sandbox.git
prefix: ${workdir}/src
branch: test-trigger
- name: trigger-sandbox2
repo: git@github.com:evergreen-ci/commit-queue-sandbox.git
prefix: ${workdir}/src
branch: test-trigger2
build_baron_settings:
ticket_create_project: "EVG"
ticket_search_projects: ["EVG"]
github_checks_aliases:
- variant: ".*"
task: ".*"