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

Side by Side Diff: infra/bots/recipes/swarm_test.expected/adb_in_path.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 "which", 4 "which",
5 "adb" 5 "adb"
6 ], 6 ],
7 "name": "which adb", 7 "name": "which adb",
8 "stdout": "/path/to/tmp/" 8 "stdout": "/path/to/tmp/"
9 }, 9 },
10 { 10 {
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 "CHROME_HEADLESS": "1", 257 "CHROME_HEADLESS": "1",
258 "SKIA_OUT": "[SLAVE_BUILD]/out" 258 "SKIA_OUT": "[SLAVE_BUILD]/out"
259 }, 259 },
260 "name": "read SK_IMAGE_VERSION", 260 "name": "read SK_IMAGE_VERSION",
261 "stdout": "/path/to/tmp/" 261 "stdout": "/path/to/tmp/"
262 }, 262 },
263 { 263 {
264 "cmd": [ 264 "cmd": [
265 "python", 265 "python",
266 "-u", 266 "-u",
267 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
268 "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
269 "/path/to/tmp/"
270 ],
271 "name": "Get downloaded SVG VERSION"
272 },
273 {
274 "cmd": [
275 "python",
276 "-u",
277 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
278 "42",
279 "[SLAVE_BUILD]/tmp/SVG_VERSION"
280 ],
281 "name": "write SVG_VERSION"
282 },
283 {
284 "cmd": [
285 "/usr/bin/adb",
286 "shell",
287 "cat",
288 "/storage/emulated/legacy/skiabot/skia_tmp_dir/SVG_VERSION"
289 ],
290 "env": {
291 "BUILDTYPE": "Debug",
292 "CHROME_HEADLESS": "1",
293 "SKIA_OUT": "[SLAVE_BUILD]/out"
294 },
295 "name": "read SVG_VERSION",
296 "stdout": "/path/to/tmp/"
297 },
298 {
299 "cmd": [
300 "python",
301 "-u",
267 "\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", 302 "\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",
268 "[CUSTOM_[SWARM_OUT_DIR]]/dm" 303 "[CUSTOM_[SWARM_OUT_DIR]]/dm"
269 ], 304 ],
270 "env": { 305 "env": {
271 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts" 306 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
272 }, 307 },
273 "name": "rmtree dm", 308 "name": "rmtree dm",
274 "~followup_annotations": [ 309 "~followup_annotations": [
275 "@@@STEP_LOG_LINE@python.inline@@@@", 310 "@@@STEP_LOG_LINE@python.inline@@@@",
276 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 311 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 "SKIA_OUT": "[SLAVE_BUILD]/out" 931 "SKIA_OUT": "[SLAVE_BUILD]/out"
897 }, 932 },
898 "name": "kill-server" 933 "name": "kill-server"
899 }, 934 },
900 { 935 {
901 "name": "$result", 936 "name": "$result",
902 "recipe_result": null, 937 "recipe_result": null,
903 "status_code": 0 938 "status_code": 0
904 } 939 }
905 ] 940 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698