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]/skia/infra/bots/assets/skimage/VERSION", | 62 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
63 "/path/to/tmp/" | 63 "/path/to/tmp/" |
64 ], | 64 ], |
65 "name": "Get downloaded skimage VERSION" | 65 "name": "Get downloaded SK_IMAGE_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": [ | |
79 "python", | 69 "python", |
80 "-u", | 70 "-u", |
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", | 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", |
82 "[CUSTOM_[SWARM_OUT_DIR]]/dm" | 72 "[CUSTOM_[SWARM_OUT_DIR]]/dm" |
83 ], | 73 ], |
84 "env": { | 74 "env": { |
85 "PYTHONPATH": "build/scripts" | 75 "PYTHONPATH": "build/scripts" |
86 }, | 76 }, |
87 "name": "rmtree dm", | 77 "name": "rmtree dm", |
88 "~followup_annotations": [ | 78 "~followup_annotations": [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 { | 183 { |
194 "cmd": [ | 184 "cmd": [ |
195 "catchsegv", | 185 "catchsegv", |
196 "[SLAVE_BUILD]/out/Debug/dm", | 186 "[SLAVE_BUILD]/out/Debug/dm", |
197 "--undefok", | 187 "--undefok", |
198 "--resourcePath", | 188 "--resourcePath", |
199 "[SLAVE_BUILD]/skia/resources", | 189 "[SLAVE_BUILD]/skia/resources", |
200 "--skps", | 190 "--skps", |
201 "[SLAVE_BUILD]/skps", | 191 "[SLAVE_BUILD]/skps", |
202 "--images", | 192 "--images", |
203 "[SLAVE_BUILD]/skimage/dm", | 193 "[SLAVE_BUILD]/images/dm", |
204 "--nameByHash", | 194 "--nameByHash", |
205 "--properties", | 195 "--properties", |
206 "gitHash", | 196 "gitHash", |
207 "abc123", | 197 "abc123", |
208 "master", | 198 "master", |
209 "client.skia", | 199 "client.skia", |
210 "builder", | 200 "builder", |
211 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug", | 201 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug", |
212 "build_number", | 202 "build_number", |
213 "5", | 203 "5", |
214 "--colorImages", | 204 "--colorImages", |
215 "[SLAVE_BUILD]/skimage/colorspace", | 205 "[SLAVE_BUILD]/images/colorspace", |
216 "--key", | 206 "--key", |
217 "arch", | 207 "arch", |
218 "x86_64", | 208 "x86_64", |
219 "compiler", | 209 "compiler", |
220 "GCC", | 210 "GCC", |
221 "configuration", | 211 "configuration", |
222 "Debug", | 212 "Debug", |
223 "cpu_or_gpu", | 213 "cpu_or_gpu", |
224 "CPU", | 214 "CPU", |
225 "cpu_or_gpu_value", | 215 "cpu_or_gpu_value", |
(...skipping 17 matching lines...) Expand all Loading... |
243 "SKIA_OUT": "[SLAVE_BUILD]/out" | 233 "SKIA_OUT": "[SLAVE_BUILD]/out" |
244 }, | 234 }, |
245 "name": "dm" | 235 "name": "dm" |
246 }, | 236 }, |
247 { | 237 { |
248 "name": "$result", | 238 "name": "$result", |
249 "recipe_result": null, | 239 "recipe_result": null, |
250 "status_code": 0 | 240 "status_code": 0 |
251 } | 241 } |
252 ] | 242 ] |
OLD | NEW |