forked from mozilla-b2g/gaia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskgraph.json
More file actions
55 lines (55 loc) · 1.33 KB
/
taskgraph.json
File metadata and controls
55 lines (55 loc) · 1.33 KB
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
{
"tasks": {
"marionette integration tests": {
"task": {
"metadata": {
"name": "Gaia Marionette JS integration testing"
},
"payload": {
"image": "registry.taskcluster.net/lightsofapollo/gaia-taskenv:0.0.1",
"command": [
"./bin/github make test-integration REPORTER=mocha-tbpl-reporter"
]
},
"tags": {
"treeherderProject": "gaia",
"treeherderSymbol": "GI"
}
}
},
"build tests": {
"task": {
"metadata": {
"name": "Gaia build system tests"
},
"payload": {
"image": "registry.taskcluster.net/lightsofapollo/gaia-taskenv:0.0.1",
"command": [
"./bin/github ./tests/travis_ci/build_tests/script"
]
},
"tags": {
"treeherderProject": "gaia",
"treeherderSymbol": "GB"
}
}
},
"lint": {
"task": {
"metadata": {
"name": "Gaia code linters"
},
"payload": {
"image": "registry.taskcluster.net/lightsofapollo/gaia-taskenv:0.0.1",
"command": [
"./bin/github make hint"
]
},
"tags": {
"treeherderProject": "gaia",
"treeherderSymbol": "HINT"
}
}
}
}
}