forked from mozilla-b2g/gaia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskgraph.json
41 lines (41 loc) · 1.04 KB
/
taskgraph.json
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
{
"metadata": {
"name": "Gaia taskgraph",
"description": "Gaia taskgraph generator"
},
"scopes": ["docker-worker:cache:gaia-misc-caches"],
"tags": {},
"tasks": [
{
"reruns": 3,
"task": {
"metadata": {
"name": "Gaia Taskcluster Decision Task"
},
"provisionerId": "aws-provisioner",
"workerType": "gaia-decision",
"scopes": [
"docker-worker:cache:gaia-misc-caches",
"docker-worker:image:quay.io/mozilla/gaia-taskenv:*"
],
"payload": {
"cache": {
"gaia-misc-caches": "/home/tester/caches/"
},
"image": "quay.io/mozilla/gaia-taskenv:0.8.0",
"command": [
"entrypoint",
"echo 'what' && make node_modules && node tests/taskcluster/bin/graph > /graph.json && cat /graph.json"
],
"graphs": ["/graph.json"]
},
"extra": {
"treeherder": {
"symbol": "D",
"groupSymbol": "?"
}
}
}
}
]
}