forked from mozilla-b2g/gaia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskgraph.json
59 lines (59 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"metadata": {
"name": "Gaia taskgraph",
"description": "Gaia taskgraph generator"
},
"scopes": [
"docker-worker:cache:gaia-misc-caches"
],
"tags": {},
"tasks": [
{
"reruns": 2,
"task": {
"metadata": {
"name": "Gaia Taskcluster Decision Task"
},
"provisionerId": "aws-provisioner-v1",
"workerType": "gaia",
"scopes": [
"docker-worker:cache:gaia-tc-vcs",
"docker-worker:cache:gaia-linux-cache",
"docker-worker:cache:gaia-misc-caches"
],
"payload": {
"cache": {
"gaia-misc-caches": "/home/worker/caches/",
"gaia-tc-vcs":"/home/worker/.tc-vcs",
"gaia-linux-cache":"/home/worker/.cache"
},
"image": "taskcluster/gaia-taskenv:2.0.4",
"command": [
"entrypoint",
"echo 'what' && node tests/taskcluster/bin/graph > /graph.json && cat /graph.json"
],
"env": {
"NODE_MODULES_SRC": "npm-cache"
},
"graphs": ["/graph.json"],
"artifacts": {
"public/package.json": {
"type": "file",
"path": "/home/worker/git_checkout/package.json",
"expires": "2016-03-30T11:59:00.000Z"
}
},
"features": {
"taskclusterProxy": true
}
},
"extra": {
"treeherder": {
"symbol": "D",
"groupSymbol": "?"
}
}
}
}
]
}