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

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-ANGLE.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.bat", 4 "git.bat",
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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 314 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
315 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 315 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
316 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 316 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
317 "@@@STEP_LOG_END@python.inline@@@" 317 "@@@STEP_LOG_END@python.inline@@@"
318 ] 318 ]
319 }, 319 },
320 { 320 {
321 "cmd": [ 321 "cmd": [
322 "python", 322 "python",
323 "-u", 323 "-u",
324 "[SLAVE_BUILD]\\skia\\tools\\get_uploaded_hashes.py", 324 "\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",
325 "chromium-skia-gm",
326 "dm-images-v1",
327 "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt" 325 "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt"
328 ], 326 ],
329 "cwd": "[SLAVE_BUILD]\\skia", 327 "cwd": "[SLAVE_BUILD]\\skia",
330 "name": "get uninteresting hashes" 328 "name": "get uninteresting hashes",
329 "~followup_annotations": [
330 "@@@STEP_LOG_LINE@python.inline@@@@",
331 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
332 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
333 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
334 "@@@STEP_LOG_LINE@python.inline@@@@",
335 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
336 "@@@STEP_LOG_LINE@python.inline@@@@",
337 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
338 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
339 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
340 "@@@STEP_LOG_END@python.inline@@@"
341 ]
331 }, 342 },
332 { 343 {
333 "cmd": [ 344 "cmd": [
334 "python", 345 "python",
335 "-u", 346 "-u",
336 "[SLAVE_BUILD]\\skia\\tools/dm_flags.py", 347 "[SLAVE_BUILD]\\skia\\tools/dm_flags.py",
337 "/path/to/tmp/json", 348 "/path/to/tmp/json",
338 "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-ANGLE" 349 "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-ANGLE"
339 ], 350 ],
340 "cwd": "[SLAVE_BUILD]\\skia", 351 "cwd": "[SLAVE_BUILD]\\skia",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 "164710", 408 "164710",
398 "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-ANGLE", 409 "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-ANGLE",
399 "5", 410 "5",
400 "", 411 "",
401 "[SLAVE_BUILD]\\skia\\common\\py\\utils" 412 "[SLAVE_BUILD]\\skia\\common\\py\\utils"
402 ], 413 ],
403 "cwd": "[SLAVE_BUILD]\\skia", 414 "cwd": "[SLAVE_BUILD]\\skia",
404 "name": "Upload DM Results" 415 "name": "Upload DM Results"
405 } 416 }
406 ] 417 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698