blob: d49276843d0e62328a14c07ee461881c43b5cde9 (
plain)
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
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""
"""
import logging
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.dependencies import get_primary_dependency
from taskgraph.util.treeherder import inherit_treeherder_from_dep
logger = logging.getLogger(__name__)
transforms = TransformSequence()
@transforms.add
def fill_template(config, tasks):
for task in tasks:
test_type = task.get("attributes")["snap_test_type"]
assert "-test-" in task.get("label")
task["label"] = task.get("label").replace("-test-", "-test-" + test_type + "-")
dep = get_primary_dependency(config, task)
assert dep
inherit_treeherder_from_dep(task, dep)
task_platform = task["task"]["extra"]["treeherder"]["machine"]["platform"]
# Disambiguate the treeherder symbol.
full_platform_collection = (
task_platform + "-snap-" + task.get("label").split("-")[-1]
)
(platform, collection) = full_platform_collection.split("/")
task["task"]["extra"]["treeherder"]["collection"] = {collection: True}
task["task"]["extra"]["treeherder"]["machine"]["platform"] = platform
task["task"]["extra"]["treeherder-platform"] = full_platform_collection
task["task"]["metadata"]["name"] = task["label"]
timeout = 10
if collection != "opt":
timeout = 60
task["task"]["payload"]["env"]["BUILD_IS_DEBUG"] = "1"
task["task"]["payload"]["env"]["TEST_TIMEOUT"] = "{}".format(timeout)
yield task
|