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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "test.py", | 114 "test.py", |
115 "test" | 115 "test" |
116 ], | 116 ], |
117 "cwd": "[SLAVE_BUILD]/infra", | 117 "cwd": "[SLAVE_BUILD]/infra", |
118 "name": "python tests" | 118 "name": "python tests" |
119 }, | 119 }, |
120 { | 120 { |
121 "cmd": [ | 121 "cmd": [ |
122 "python", | 122 "python", |
123 "-u", | 123 "-u", |
| 124 "[SLAVE_BUILD]/infra/recipes/recipes.py", |
| 125 "simulation_test", |
| 126 "test" |
| 127 ], |
| 128 "name": "recipe tests" |
| 129 }, |
| 130 { |
| 131 "cmd": [ |
| 132 "python", |
| 133 "-u", |
| 134 "[SLAVE_BUILD]/infra/recipes/recipes.py", |
| 135 "lint" |
| 136 ], |
| 137 "name": "recipe lint" |
| 138 }, |
| 139 { |
| 140 "cmd": [ |
| 141 "python", |
| 142 "-u", |
124 "[SLAVE_BUILD]/infra/go/env.py" | 143 "[SLAVE_BUILD]/infra/go/env.py" |
125 ], | 144 ], |
126 "name": "go bootstrap" | 145 "name": "go bootstrap" |
127 }, | 146 }, |
128 { | 147 { |
129 "cmd": [ | 148 "cmd": [ |
130 "python", | 149 "python", |
131 "-u", | 150 "-u", |
132 "[SLAVE_BUILD]/infra/go/env.py", | 151 "[SLAVE_BUILD]/infra/go/env.py", |
133 "python", | 152 "python", |
134 "[SLAVE_BUILD]/infra/go/test.py" | 153 "[SLAVE_BUILD]/infra/go/test.py" |
135 ], | 154 ], |
136 "name": "go tests" | 155 "name": "go tests" |
137 }, | 156 }, |
138 { | 157 { |
139 "name": "$result", | 158 "name": "$result", |
140 "recipe_result": null, | 159 "recipe_result": null, |
141 "status_code": 0 | 160 "status_code": 0 |
142 } | 161 } |
143 ] | 162 ] |
OLD | NEW |