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

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

Issue 2209423002: [recipes] Remove build environment vars from default_env (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec_fix_coverage
Patch Set: [recipes] Remove build environment vars from default_env 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 "cmd": [ 109 "cmd": [
110 "python", 110 "python",
111 "-u", 111 "-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", 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",
113 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 113 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
114 ], 114 ],
115 "cwd": "[SLAVE_BUILD]/skia", 115 "cwd": "[SLAVE_BUILD]/skia",
116 "env": { 116 "env": {
117 "BUILDTYPE": "Debug", 117 "BUILDTYPE": "Debug",
118 "CHROME_HEADLESS": "1", 118 "CHROME_HEADLESS": "1",
119 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0 ",
120 "SKIA_OUT": "[SLAVE_BUILD]/out" 119 "SKIA_OUT": "[SLAVE_BUILD]/out"
121 }, 120 },
122 "name": "get uninteresting hashes", 121 "name": "get uninteresting hashes",
123 "~followup_annotations": [ 122 "~followup_annotations": [
124 "@@@STEP_LOG_LINE@python.inline@@@@", 123 "@@@STEP_LOG_LINE@python.inline@@@@",
125 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@", 124 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
126 "@@@STEP_LOG_LINE@python.inline@import math@@@", 125 "@@@STEP_LOG_LINE@python.inline@import math@@@",
127 "@@@STEP_LOG_LINE@python.inline@import socket@@@", 126 "@@@STEP_LOG_LINE@python.inline@import socket@@@",
128 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 127 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
129 "@@@STEP_LOG_LINE@python.inline@import time@@@", 128 "@@@STEP_LOG_LINE@python.inline@import time@@@",
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 "_", 392 "_",
394 "image-cacherator-from-ctable", 393 "image-cacherator-from-ctable",
395 "serialize-8888", 394 "serialize-8888",
396 "gm", 395 "gm",
397 "_", 396 "_",
398 "image-cacherator-from-ctable" 397 "image-cacherator-from-ctable"
399 ], 398 ],
400 "env": { 399 "env": {
401 "BUILDTYPE": "Debug", 400 "BUILDTYPE": "Debug",
402 "CHROME_HEADLESS": "1", 401 "CHROME_HEADLESS": "1",
403 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0 ",
404 "SKIA_OUT": "[SLAVE_BUILD]/out" 402 "SKIA_OUT": "[SLAVE_BUILD]/out"
405 }, 403 },
406 "name": "dm" 404 "name": "dm"
407 }, 405 },
408 { 406 {
409 "name": "$result", 407 "name": "$result",
410 "recipe_result": null, 408 "recipe_result": null,
411 "status_code": 0 409 "status_code": 0
412 } 410 }
413 ] 411 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698