-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathevergreen.yml
338 lines (316 loc) · 8.03 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
## this is a changes
ignore:
- "*.md" # dont schedule tests if a commit only changes markdown files!
stepback: true
# includes:
# - include1.yml
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: ".*"
# containers:
# - name: evg-container
# working_dir: /
# image: "hadjri/evg-container-self-tests"
# resources:
# cpu: 4096
# memory_mb: 8192
# system:
# cpu_architecture: x86_64
# operating_system: linux
buildvariants:
- name: ubuntu2004-container
display_name: Ubuntu 20.04 (Container)
run_on:
- evg-container
expansions:
goos: linux
goarch: amd64
IS_DOCKER: true
GOROOT: /usr/local/go
mongodb_url: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2004-5.0.14.tgz
decompress: tar zxvf
tasks:
- name: unit_tests
activate: false
- name: validate_commit_message
- name: patch_only_task
- name: batchtime_task
- name: test_passing_param_to_child
- name: test-receiving-parent-param
- name: test-restart-on-fail
- name: test_release
- name: test_release2
- name: bynns single task thing
display_name: single task test
run_on:
- ubuntu1604-large
tasks:
- name: taskB
run_on:
- bynntest
- name: patch_only_task
run_on:
- bynntest
- display_name: Ubuntu 20.04
name: ubuntu2004
tags: [commit-queue-variant, whaat]
modules:
- evergreen
run_on:
- ubuntu1604-large
expansions:
module_prefix: hello
tasks:
- name: task_generator
- name: unit_tests
activate: false
disable: true
- 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: git-env-test
display_name: "Giv Env Test"
modules:
- evergreen
run_on:
- ubuntu2004-small
tasks:
- name: test-restart-on-fail
- name: task_generator
create_check_run:
path_to_outputs: "path"
- 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
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
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: host.create
params:
num_hosts: 1
provider: docker
background: false
command: "echo hello evan test"
distro: ubuntu1604-container
image: amazonlinux
stdout_file_name: ${workdir}/garasign_container.out.log
stderr_file_name: ${workdir}/garasign_container.err.log
- 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 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: 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"
modules:
- name: evergreen
repo: [email protected]:evergreen-ci/evergreen.git
prefix: ${workdir}/src
branch: main
- name: test-trigger
repo: [email protected]:evergreen-ci/evergreen.git
prefix: ${workdir}/src
branch: main
build_baron_settings:
ticket_create_project: "EVG"
ticket_search_projects: ["EVG"]