Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: infra/bots/recipes/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared.json

Issue 2231943002: Use SVGs CIPD package and use SVG as a DM source (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Address comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
8 "/path/to/tmp/" 8 "/path/to/tmp/"
9 ], 9 ],
10 "name": "Get downloaded SKP VERSION" 10 "name": "Get downloaded SKP VERSION"
(...skipping 25 matching lines...) Expand all
36 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 36 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
37 "42", 37 "42",
38 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" 38 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
39 ], 39 ],
40 "name": "write SK_IMAGE_VERSION" 40 "name": "write SK_IMAGE_VERSION"
41 }, 41 },
42 { 42 {
43 "cmd": [ 43 "cmd": [
44 "python", 44 "python",
45 "-u", 45 "-u",
46 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
47 "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
48 "/path/to/tmp/"
49 ],
50 "name": "Get downloaded SVG VERSION"
51 },
52 {
53 "cmd": [
54 "python",
55 "-u",
56 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
57 "42",
58 "[SLAVE_BUILD]/tmp/SVG_VERSION"
59 ],
60 "name": "write SVG_VERSION"
61 },
62 {
63 "cmd": [
64 "python",
65 "-u",
46 "\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", 66 "\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",
47 "[CUSTOM_[SWARM_OUT_DIR]]/dm" 67 "[CUSTOM_[SWARM_OUT_DIR]]/dm"
48 ], 68 ],
49 "env": { 69 "env": {
50 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts" 70 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
51 }, 71 },
52 "name": "rmtree dm", 72 "name": "rmtree dm",
53 "~followup_annotations": [ 73 "~followup_annotations": [
54 "@@@STEP_LOG_LINE@python.inline@@@@", 74 "@@@STEP_LOG_LINE@python.inline@@@@",
55 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 75 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 }, 127 },
108 { 128 {
109 "cmd": [ 129 "cmd": [
110 "python", 130 "python",
111 "-u", 131 "-u",
112 "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\ nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nT IMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in r ange(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HA SHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys. argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math .pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(wait time)\n", 132 "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\ nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nT IMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in r ange(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HA SHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys. argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math .pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(wait time)\n",
113 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 133 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
114 ], 134 ],
115 "cwd": "[SLAVE_BUILD]/skia", 135 "cwd": "[SLAVE_BUILD]/skia",
116 "env": { 136 "env": {
117 "BUILDTYPE": "Debug", 137 "BUILDTYPE": "Release",
118 "CHROME_HEADLESS": "1", 138 "CHROME_HEADLESS": "1",
119 "SKIA_OUT": "[SLAVE_BUILD]/out" 139 "SKIA_OUT": "[SLAVE_BUILD]/out"
120 }, 140 },
121 "name": "get uninteresting hashes", 141 "name": "get uninteresting hashes",
122 "~followup_annotations": [ 142 "~followup_annotations": [
123 "@@@STEP_LOG_LINE@python.inline@@@@", 143 "@@@STEP_LOG_LINE@python.inline@@@@",
124 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@", 144 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
125 "@@@STEP_LOG_LINE@python.inline@import math@@@", 145 "@@@STEP_LOG_LINE@python.inline@import math@@@",
126 "@@@STEP_LOG_LINE@python.inline@import socket@@@", 146 "@@@STEP_LOG_LINE@python.inline@import socket@@@",
127 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 147 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
(...skipping 21 matching lines...) Expand all
149 "@@@STEP_LOG_LINE@python.inline@ raise@@@", 169 "@@@STEP_LOG_LINE@python.inline@ raise@@@",
150 "@@@STEP_LOG_LINE@python.inline@ waittime = WAIT_BASE * math.pow(2, ret ry)@@@", 170 "@@@STEP_LOG_LINE@python.inline@ waittime = WAIT_BASE * math.pow(2, ret ry)@@@",
151 "@@@STEP_LOG_LINE@python.inline@ print 'Retry in %d seconds.' % waittim e@@@", 171 "@@@STEP_LOG_LINE@python.inline@ print 'Retry in %d seconds.' % waittim e@@@",
152 "@@@STEP_LOG_LINE@python.inline@ time.sleep(waittime)@@@", 172 "@@@STEP_LOG_LINE@python.inline@ time.sleep(waittime)@@@",
153 "@@@STEP_LOG_END@python.inline@@@" 173 "@@@STEP_LOG_END@python.inline@@@"
154 ] 174 ]
155 }, 175 },
156 { 176 {
157 "cmd": [ 177 "cmd": [
158 "catchsegv", 178 "catchsegv",
159 "[SLAVE_BUILD]/out/Debug/dm", 179 "[SLAVE_BUILD]/out/Release/dm",
160 "--undefok", 180 "--undefok",
161 "--resourcePath", 181 "--resourcePath",
162 "[SLAVE_BUILD]/skia/resources", 182 "[SLAVE_BUILD]/skia/resources",
163 "--skps", 183 "--skps",
164 "[SLAVE_BUILD]/skp", 184 "[SLAVE_BUILD]/skp",
165 "--images", 185 "--images",
166 "[SLAVE_BUILD]/skimage/dm", 186 "[SLAVE_BUILD]/skimage/dm",
167 "--colorImages", 187 "--colorImages",
168 "[SLAVE_BUILD]/skimage/colorspace", 188 "[SLAVE_BUILD]/skimage/colorspace",
169 "--nameByHash", 189 "--nameByHash",
170 "--properties", 190 "--properties",
171 "gitHash", 191 "gitHash",
172 "abc123", 192 "abc123",
173 "master", 193 "master",
174 "client.skia", 194 "client.skia",
175 "builder", 195 "builder",
176 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug", 196 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared",
177 "build_number", 197 "build_number",
178 "5", 198 "5",
199 "--svgs",
200 "[SLAVE_BUILD]/svg",
179 "--key", 201 "--key",
180 "arch", 202 "arch",
181 "x86_64", 203 "x86_64",
182 "compiler", 204 "compiler",
183 "GCC", 205 "GCC",
184 "configuration", 206 "configuration",
185 "Debug", 207 "Release",
186 "cpu_or_gpu", 208 "cpu_or_gpu",
187 "CPU", 209 "CPU",
188 "cpu_or_gpu_value", 210 "cpu_or_gpu_value",
189 "AVX2", 211 "AVX2",
212 "extra_config",
213 "Shared",
190 "model", 214 "model",
191 "GCE", 215 "GCE",
192 "os", 216 "os",
193 "Ubuntu", 217 "Ubuntu",
194 "--uninterestingHashesFile", 218 "--uninterestingHashesFile",
195 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", 219 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
196 "--writePath", 220 "--writePath",
197 "[CUSTOM_[SWARM_OUT_DIR]]/dm", 221 "[CUSTOM_[SWARM_OUT_DIR]]/dm",
198 "--nogpu", 222 "--nogpu",
199 "--config", 223 "--config",
200 "565", 224 "565",
201 "8888", 225 "8888",
202 "gpu", 226 "gpu",
203 "gpusrgb", 227 "gpusrgb",
204 "pdf", 228 "pdf",
205 "msaa16", 229 "msaa16",
206 "f16", 230 "f16",
207 "srgb", 231 "srgb",
208 "sp-8888", 232 "sp-8888",
209 "2ndpic-8888", 233 "2ndpic-8888",
210 "lite-8888", 234 "lite-8888",
211 "serialize-8888", 235 "serialize-8888",
212 "tiles_rt-8888", 236 "tiles_rt-8888",
213 "pic-8888", 237 "pic-8888",
214 "--src", 238 "--src",
215 "tests", 239 "tests",
216 "gm", 240 "gm",
217 "image", 241 "image",
218 "colorImage", 242 "colorImage",
243 "svg",
219 "--blacklist", 244 "--blacklist",
220 "f16", 245 "f16",
221 "_", 246 "_",
222 "_", 247 "_",
223 "dstreadshuffle", 248 "dstreadshuffle",
224 "f16", 249 "f16",
225 "image", 250 "image",
226 "_", 251 "_",
227 "_", 252 "_",
228 "srgb", 253 "srgb",
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 "2ndpic-8888", 421 "2ndpic-8888",
397 "gm", 422 "gm",
398 "_", 423 "_",
399 "image-cacherator-from-ctable", 424 "image-cacherator-from-ctable",
400 "serialize-8888", 425 "serialize-8888",
401 "gm", 426 "gm",
402 "_", 427 "_",
403 "image-cacherator-from-ctable" 428 "image-cacherator-from-ctable"
404 ], 429 ],
405 "env": { 430 "env": {
406 "BUILDTYPE": "Debug", 431 "BUILDTYPE": "Release",
407 "CHROME_HEADLESS": "1", 432 "CHROME_HEADLESS": "1",
408 "SKIA_OUT": "[SLAVE_BUILD]/out" 433 "SKIA_OUT": "[SLAVE_BUILD]/out"
409 }, 434 },
410 "name": "dm" 435 "name": "dm"
411 }, 436 },
412 { 437 {
413 "name": "$result", 438 "name": "$result",
414 "recipe_result": null, 439 "recipe_result": null,
415 "status_code": 0 440 "status_code": 0
416 } 441 }
417 ] 442 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698