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

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Mac10.8-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug.json

Issue 1068503002: Skia: Replace get_uploaded_hashes call with inline script (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 8 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 "git", 4 "git",
5 "fetch" 5 "fetch"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]/skia", 7 "cwd": "[SLAVE_BUILD]/skia",
8 "name": "git fetch" 8 "name": "git fetch"
9 }, 9 },
10 { 10 {
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 316 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
317 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 317 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
318 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 318 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
319 "@@@STEP_LOG_END@python.inline@@@" 319 "@@@STEP_LOG_END@python.inline@@@"
320 ] 320 ]
321 }, 321 },
322 { 322 {
323 "cmd": [ 323 "cmd": [
324 "python", 324 "python",
325 "-u", 325 "-u",
326 "[SLAVE_BUILD]/skia/tools/get_uploaded_hashes.py", 326 "\nimport contextlib\nimport sys\nimport urllib2\n\nHASHES_URL = 'https:// gold.skia.org/2/_/hashes'\n\nwith open(sys.argv[1], 'w') as f:\n with contextli b.closing(urllib2.urlopen(HASHES_URL)) as w:\n f.write(w.read())\n",
327 "chromium-skia-gm",
328 "dm-images-v1",
329 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 327 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
330 ], 328 ],
331 "cwd": "[SLAVE_BUILD]/skia", 329 "cwd": "[SLAVE_BUILD]/skia",
332 "name": "get uninteresting hashes" 330 "name": "get uninteresting hashes",
331 "~followup_annotations": [
332 "@@@STEP_LOG_LINE@python.inline@@@@",
333 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
334 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
335 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
336 "@@@STEP_LOG_LINE@python.inline@@@@",
337 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
338 "@@@STEP_LOG_LINE@python.inline@@@@",
339 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
340 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
341 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
342 "@@@STEP_LOG_END@python.inline@@@"
343 ]
333 }, 344 },
334 { 345 {
335 "cmd": [ 346 "cmd": [
336 "python", 347 "python",
337 "-u", 348 "-u",
338 "[SLAVE_BUILD]/skia/tools/dm_flags.py", 349 "[SLAVE_BUILD]/skia/tools/dm_flags.py",
339 "/path/to/tmp/json", 350 "/path/to/tmp/json",
340 "Test-Mac10.8-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug" 351 "Test-Mac10.8-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug"
341 ], 352 ],
342 "cwd": "[SLAVE_BUILD]/skia", 353 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "--nocpu", 447 "--nocpu",
437 "--dummy-flags" 448 "--dummy-flags"
438 ], 449 ],
439 "env": { 450 "env": {
440 "CC": "/usr/bin/clang", 451 "CC": "/usr/bin/clang",
441 "CXX": "/usr/bin/clang++" 452 "CXX": "/usr/bin/clang++"
442 }, 453 },
443 "name": "nanobench" 454 "name": "nanobench"
444 } 455 }
445 ] 456 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698