-
Notifications
You must be signed in to change notification settings - Fork 311
/
.taskcluster.yml
374 lines (358 loc) · 16.3 KB
/
.taskcluster.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
version: 1
reporting: checks-v1
policy:
pullRequests: public
tasks:
$let:
user: ${event.sender.login}
head_branch:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.ref}
else:
$if: 'tasks_for == "github-push"'
then: ${event.ref}
else: ${event.release.target_commitish}
head_rev:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.sha}
else:
$if: 'tasks_for == "github-push"'
then: ${event.after}
else: ${event.release.tag_name}
repository:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.repo.html_url}
else: ${event.repository.html_url}
pr_description:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.body}
taskboot_image: "mozilla/taskboot:0.4.2"
in:
$let:
default_task_definition:
created: { $fromNow: "" }
deadline: { $fromNow: "1 hour" }
provisionerId: proj-bugbug
workerType: batch
payload:
maxRunTime: 3600
image: python:3.12.3
metadata:
owner: [email protected]
source: ${repository}/raw/${head_rev}/.taskcluster.yml
in:
$if: 'tasks_for == "github-push" || (tasks_for == "github-pull-request" && event["action"] in ["opened", "reopened", "synchronize"])'
then:
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("lint_task") }
payload:
command:
- "/bin/bash"
- "-lcx"
- "git clone --quiet ${repository} &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r test-requirements.txt &&
pre-commit run -a --show-diff-on-failure"
metadata:
name: bugbug lint
description: bugbug lint
- $if: 'tasks_for == "github-push"'
then:
$mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("version_check_task") }
payload:
command:
- "/bin/bash"
- "-lcx"
- "git clone --quiet ${repository} &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
python infra/version_check.py"
metadata:
name: bugbug tag version check
description: bugbug tag version check
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("tests_task") }
workerType: compute-smaller
payload:
env:
CODECOV_TOKEN: 66162f89-a4d9-420c-84bd-d10f12a428d9
command:
- "/bin/bash"
- "-lcx"
- "apt-get -qq update &&
apt-get -qq install -y libhdf5-dev zstd &&
git clone --quiet ${repository} &&
curl -L https://github.com/mozilla/rust-code-analysis/releases/download/v0.0.23/rust-code-analysis-linux-web-x86_64.tar.gz | tar -C /usr/bin -xzv &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
cp infra/hgrc /etc/mercurial/hgrc.d/bugbug.rc &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r requirements.txt &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r extra-nlp-requirements.txt &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r infra/spawn_pipeline_requirements.txt &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r test-requirements.txt &&
hg clone -r 90302f015ac8dd8877ef3ee24b5a62541142378b https://hg.mozilla.org/hgcustom/version-control-tools /version-control-tools/ &&
python -m pytest --cov=./ tests/test_*.py &&
bash <(curl -s https://codecov.io/bash)"
metadata:
name: bugbug tests
description: bugbug tests
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("http_tests_task") }
workerType: compute-smaller
payload:
env:
CODECOV_TOKEN: 66162f89-a4d9-420c-84bd-d10f12a428d9
command:
- "/bin/bash"
- "-lcx"
- "apt-get -qq update &&
apt-get -qq install -y zstd &&
git clone --quiet ${repository} &&
curl -L https://github.com/mozilla/rust-code-analysis/releases/download/v0.0.23/rust-code-analysis-linux-web-x86_64.tar.gz | tar -C /usr/bin -xzv &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
cp infra/hgrc /etc/mercurial/hgrc.d/bugbug.rc &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off . &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r test-requirements.txt &&
cp VERSION http_service/VERSION &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off ./http_service &&
hg clone -r 90302f015ac8dd8877ef3ee24b5a62541142378b https://hg.mozilla.org/hgcustom/version-control-tools /version-control-tools/ &&
pytest --cov=http_service http_service/tests/ -vvv &&
bash <(curl -s https://codecov.io/bash)"
metadata:
name: bugbug http service tests
description: bugbug http service tests
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("packaging_test_task") }
payload:
env:
CODECOV_TOKEN: 66162f89-a4d9-420c-84bd-d10f12a428d9
command:
- "/bin/bash"
- "-lcx"
- "apt-get -qq update &&
apt-get -qq install -y libhdf5-dev &&
git clone --quiet ${repository} &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off -r test-requirements.txt &&
python -m coverage run setup.py sdist &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off dist/bugbug-$(cat VERSION).tar.gz &&
pip install --disable-pip-version-check --no-cache-dir --progress-bar off dist/bugbug-$(cat VERSION).tar.gz[nlp] &&
bash <(curl -s https://codecov.io/bash)"
metadata:
name: bugbug packaging test
description: bugbug packaging test
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("docker_build") }
deadline: { $fromNow: "3 hours" }
workerType: ci
payload:
capabilities:
privileged: true
maxRunTime: 10800
image: "${taskboot_image}"
env:
REGISTRY: registry.hub.docker.com
VERSION:
$if: 'head_branch[:10] == "refs/tags/"'
then: { $eval: "head_branch[10:]" }
else: "latest"
command:
- "/bin/sh"
- "-lcxe"
- "git clone --quiet ${repository} /code &&
cd /code &&
git -c advice.detachedHead=false checkout ${head_rev} &&
taskboot --target /code build-compose --write /images --build-arg CHECK_MODELS=0 --tag $VERSION --tag latest"
artifacts:
public/bugbug:
expires: { $fromNow: "2 weeks" }
path: /images
type: directory
scopes:
- docker-worker:capability:privileged
metadata:
name: bugbug docker build
description: bugbug docker build
- $if: 'tasks_for == "github-pull-request" && "Train on Taskcluster: " in pr_description'
then:
$mergeDeep:
- { $eval: default_task_definition }
- dependencies:
- { $eval: as_slugid("docker_build") }
taskId: { $eval: as_slugid("train_on_taskcluster") }
deadline: { $fromNow: "1 day" }
workerType: compute-large
payload:
maxRunTime:
$switch:
'"Train on Taskcluster: regression" in pr_description': 2700
$default: 10800
image:
type: task-image
path: public/bugbug/bugbug-base.tar.zst
taskId: { $eval: as_slugid("docker_build") }
env:
PR_DESCRIPTION: "${pr_description}"
command:
- "/bin/sh"
- "-lcx"
- "python -m scripts.trainer $(python -m scripts.trainer_extract_args)"
metadata:
name: bugbug train on TC
description: Train a BugBug model on Taskcluster
- $mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("frontend_build") }
payload:
image: node:lts
command:
- "/bin/sh"
- "-lcxe"
- "git clone --quiet ${repository} /bugbug &&
cd /bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
cd ui/changes &&
npm install --no-progress &&
npm run release"
artifacts:
public/frontend:
expires: { $fromNow: "2 weeks" }
path: /bugbug/ui/changes/dist
type: directory
metadata:
name: bugbug ui build
description: bugbug ui build
- $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"'
then:
$mergeDeep:
- { $eval: default_task_definition }
- dependencies:
- { $eval: as_slugid("lint_task") }
- { $eval: as_slugid("tests_task") }
- { $eval: as_slugid("http_tests_task") }
- { $eval: as_slugid("frontend_build") }
- { $eval: as_slugid("packaging_test_task") }
- { $eval: as_slugid("version_check_task") }
- { $eval: as_slugid("integration_test") }
scopes:
- secrets:get:project/bugbug/deploy
payload:
features:
taskclusterProxy: true
image: "${taskboot_image}"
command:
- taskboot
- deploy-pypi
env:
TASKCLUSTER_SECRET: project/bugbug/deploy
GIT_REPOSITORY: "${repository}"
GIT_REVISION: "${head_rev}"
metadata:
name: bugbug PyPI release
description: bugbug PyPI release
- $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"'
then:
$mergeDeep:
- { $eval: default_task_definition }
- dependencies:
- { $eval: as_slugid("docker_build") }
- { $eval: as_slugid("lint_task") }
- { $eval: as_slugid("version_check_task") }
- { $eval: as_slugid("tests_task") }
- { $eval: as_slugid("http_tests_task") }
- { $eval: as_slugid("frontend_build") }
- { $eval: as_slugid("packaging_test_task") }
scopes:
- secrets:get:project/bugbug/deploy
taskId: { $eval: as_slugid("docker_push") }
deadline: { $fromNow: "4 hours" }
payload:
features:
taskclusterProxy: true
image: "${taskboot_image}"
env:
TASKCLUSTER_SECRET: project/bugbug/deploy
command:
- taskboot
- push-artifact
- --exclude-filter
- "*http-service*"
metadata:
name: bugbug docker push
description: bugbug docker push
# It's the same task integration_test as in data-pipeline.yml
- $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"'
then:
$mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("integration_test") }
dependencies:
- { $eval: as_slugid("docker_push") }
workerType: compute-small
scopes:
- secrets:get:project/bugbug/integration
- "docker-worker:cache:bugbug-mercurial-repository"
- "generic-worker:cache:bugbug-mercurial-repository"
payload:
features:
taskclusterProxy: true
maxRunTime: 10800
image: mozilla/bugbug-commit-retrieval:${head_branch[10:]}
env:
TC_SECRET_ID: project/bugbug/integration
CACHE_DIR: "/cache"
command:
- "/bin/bash"
- "-lcx"
- "apt-get -qq update &&
apt-get -qq install -y redis-server &&
git clone --quiet ${repository} &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
python -c 'import os; print(os.environ.keys())' &&
bash ./scripts/integration_test.sh"
cache:
bugbug-mercurial-repository: /cache
metadata:
name: bugbug integration test
description: bugbug integration test
owner: ${user}@users.noreply.github.com
- $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"'
then:
$mergeDeep:
- { $eval: default_task_definition }
- taskId: { $eval: as_slugid("update_hook_data_pipeline") }
dependencies:
- { $eval: as_slugid("integration_test") }
scopes:
- hooks:modify-hook:project-bugbug/bugbug
- assume:hook-id:project-bugbug/bugbug
- queue:route:project.bugbug.deploy_ending.*
deadline: { $fromNow: "5 hours" }
payload:
features:
taskclusterProxy: true
image: "${taskboot_image}"
command:
- "/bin/sh"
- "-lcxe"
- "git clone --quiet ${repository} &&
cd bugbug &&
git -c advice.detachedHead=false checkout ${head_rev} &&
python infra/set_hook_version.py ${head_branch[10:]} infra/taskcluster-hook-data-pipeline.json &&
taskboot --target . build-hook infra/taskcluster-hook-data-pipeline.json project-bugbug bugbug"
routes:
- project.bugbug.deploy_ending
metadata:
name: bugbug update data hook
description: bugbug update data hook