OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
7 "--master", | 7 "--master", |
8 "tryserver.chromium.linux", | 8 "tryserver.chromium.linux", |
9 "--builder", | 9 "--builder", |
10 "infra_tester", | 10 "infra_tester", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "test.py", | 113 "test.py", |
114 "test" | 114 "test" |
115 ], | 115 ], |
116 "cwd": "[SLAVE_BUILD]/infra", | 116 "cwd": "[SLAVE_BUILD]/infra", |
117 "name": "python tests" | 117 "name": "python tests" |
118 }, | 118 }, |
119 { | 119 { |
120 "cmd": [ | 120 "cmd": [ |
121 "python", | 121 "python", |
122 "-u", | 122 "-u", |
| 123 "[SLAVE_BUILD]/infra/recipes/recipes.py", |
| 124 "simulation_test", |
| 125 "test" |
| 126 ], |
| 127 "name": "recipe tests" |
| 128 }, |
| 129 { |
| 130 "cmd": [ |
| 131 "python", |
| 132 "-u", |
| 133 "[SLAVE_BUILD]/infra/recipes/recipes.py", |
| 134 "lint" |
| 135 ], |
| 136 "name": "recipe lint" |
| 137 }, |
| 138 { |
| 139 "cmd": [ |
| 140 "python", |
| 141 "-u", |
123 "[SLAVE_BUILD]/infra/go/env.py" | 142 "[SLAVE_BUILD]/infra/go/env.py" |
124 ], | 143 ], |
125 "name": "go bootstrap" | 144 "name": "go bootstrap" |
126 }, | 145 }, |
127 { | 146 { |
128 "cmd": [ | 147 "cmd": [ |
129 "python", | 148 "python", |
130 "-u", | 149 "-u", |
131 "[SLAVE_BUILD]/infra/go/env.py", | 150 "[SLAVE_BUILD]/infra/go/env.py", |
132 "python", | 151 "python", |
(...skipping 10 matching lines...) Expand all Loading... |
143 ], | 162 ], |
144 "cwd": "[SLAVE_BUILD]/infra", | 163 "cwd": "[SLAVE_BUILD]/infra", |
145 "name": "rietveld tests" | 164 "name": "rietveld tests" |
146 }, | 165 }, |
147 { | 166 { |
148 "name": "$result", | 167 "name": "$result", |
149 "recipe_result": null, | 168 "recipe_result": null, |
150 "status_code": 0 | 169 "status_code": 0 |
151 } | 170 } |
152 ] | 171 ] |
OLD | NEW |