OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", | 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", |
7 "/path/to/tmp/json", | 7 "/path/to/tmp/json", |
8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug" | 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug" |
9 ], | 9 ], |
10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 52 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
53 "/path/to/tmp/" | 53 "/path/to/tmp/" |
54 ], | 54 ], |
55 "name": "Get downloaded SKP_VERSION" | 55 "name": "Get downloaded SKP_VERSION" |
56 }, | 56 }, |
57 { | 57 { |
58 "cmd": [ | 58 "cmd": [ |
59 "python", | 59 "python", |
60 "-u", | 60 "-u", |
61 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 61 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
62 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 62 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", |
63 "/path/to/tmp/" | 63 "/path/to/tmp/" |
64 ], | 64 ], |
65 "name": "Get downloaded SK_IMAGE_VERSION" | 65 "name": "Get downloaded skimage VERSION" |
66 }, | 66 }, |
67 { | 67 { |
68 "cmd": [ | 68 "cmd": [ |
| 69 "python", |
| 70 "-u", |
| 71 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 72 "42", |
| 73 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" |
| 74 ], |
| 75 "name": "write SK_IMAGE_VERSION" |
| 76 }, |
| 77 { |
| 78 "cmd": [ |
69 "python", | 79 "python", |
70 "-u", | 80 "-u", |
71 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", | 81 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", |
72 "[CUSTOM_[SWARM_OUT_DIR]]/dm" | 82 "[CUSTOM_[SWARM_OUT_DIR]]/dm" |
73 ], | 83 ], |
74 "env": { | 84 "env": { |
75 "PYTHONPATH": "build/scripts" | 85 "PYTHONPATH": "build/scripts" |
76 }, | 86 }, |
77 "name": "rmtree dm", | 87 "name": "rmtree dm", |
78 "~followup_annotations": [ | 88 "~followup_annotations": [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 { | 193 { |
184 "cmd": [ | 194 "cmd": [ |
185 "catchsegv", | 195 "catchsegv", |
186 "[SLAVE_BUILD]/out/Debug/dm", | 196 "[SLAVE_BUILD]/out/Debug/dm", |
187 "--undefok", | 197 "--undefok", |
188 "--resourcePath", | 198 "--resourcePath", |
189 "[SLAVE_BUILD]/skia/resources", | 199 "[SLAVE_BUILD]/skia/resources", |
190 "--skps", | 200 "--skps", |
191 "[SLAVE_BUILD]/skps", | 201 "[SLAVE_BUILD]/skps", |
192 "--images", | 202 "--images", |
193 "[SLAVE_BUILD]/images/dm", | 203 "[SLAVE_BUILD]/skimage/dm", |
194 "--nameByHash", | 204 "--nameByHash", |
195 "--properties", | 205 "--properties", |
196 "gitHash", | 206 "gitHash", |
197 "abc123", | 207 "abc123", |
198 "master", | 208 "master", |
199 "client.skia", | 209 "client.skia", |
200 "builder", | 210 "builder", |
201 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug", | 211 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug", |
202 "build_number", | 212 "build_number", |
203 "5", | 213 "5", |
204 "--colorImages", | 214 "--colorImages", |
205 "[SLAVE_BUILD]/images/colorspace", | 215 "[SLAVE_BUILD]/skimage/colorspace", |
206 "--key", | 216 "--key", |
207 "arch", | 217 "arch", |
208 "x86_64", | 218 "x86_64", |
209 "compiler", | 219 "compiler", |
210 "GCC", | 220 "GCC", |
211 "configuration", | 221 "configuration", |
212 "Debug", | 222 "Debug", |
213 "cpu_or_gpu", | 223 "cpu_or_gpu", |
214 "CPU", | 224 "CPU", |
215 "cpu_or_gpu_value", | 225 "cpu_or_gpu_value", |
(...skipping 17 matching lines...) Expand all Loading... |
233 "SKIA_OUT": "[SLAVE_BUILD]/out" | 243 "SKIA_OUT": "[SLAVE_BUILD]/out" |
234 }, | 244 }, |
235 "name": "dm" | 245 "name": "dm" |
236 }, | 246 }, |
237 { | 247 { |
238 "name": "$result", | 248 "name": "$result", |
239 "recipe_result": null, | 249 "recipe_result": null, |
240 "status_code": 0 | 250 "status_code": 0 |
241 } | 251 } |
242 ] | 252 ] |
OLD | NEW |