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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/restart_usb_builder_basic.json

Issue 976913002: Add '--adb-keys-file $HOME/.android/*.pub' to all bot provision_devices calls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Combine if statements Created 5 years, 9 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
10 "~followup_annotations": [ 10 "~followup_annotations": [
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 "@@@STEP_LOG_LINE@json.output@]@@@", 333 "@@@STEP_LOG_LINE@json.output@]@@@",
334 "@@@STEP_LOG_END@json.output@@@" 334 "@@@STEP_LOG_END@json.output@@@"
335 ] 335 ]
336 }, 336 },
337 { 337 {
338 "cmd": [ 338 "cmd": [
339 "python", 339 "python",
340 "-u", 340 "-u",
341 "[SLAVE_BUILD]/src/build/android/provision_devices.py", 341 "[SLAVE_BUILD]/src/build/android/provision_devices.py",
342 "-t", 342 "-t",
343 "Release" 343 "Release",
344 "--adb-key-files /usr/local/google/home/navabi/.android/*.pub"
344 ], 345 ],
345 "env": { 346 "env": {
346 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 347 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
347 }, 348 },
348 "name": "provision_devices" 349 "name": "provision_devices"
349 }, 350 },
350 { 351 {
351 "cmd": [ 352 "cmd": [
352 "python", 353 "python",
353 "-u", 354 "-u",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 "[SLAVE_BUILD]/src/build/android/asan_symbolize.py", 468 "[SLAVE_BUILD]/src/build/android/asan_symbolize.py",
468 "-l", 469 "-l",
469 "[SLAVE_BUILD]/src/out/Release/full_log" 470 "[SLAVE_BUILD]/src/out/Release/full_log"
470 ], 471 ],
471 "env": { 472 "env": {
472 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 473 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
473 }, 474 },
474 "name": "stack_tool_for_asan" 475 "name": "stack_tool_for_asan"
475 } 476 }
476 ] 477 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698