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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/gerrit_refs.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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 "@@@STEP_LOG_END@json.output@@@" 335 "@@@STEP_LOG_END@json.output@@@"
336 ] 336 ]
337 }, 337 },
338 { 338 {
339 "cmd": [ 339 "cmd": [
340 "python", 340 "python",
341 "-u", 341 "-u",
342 "[SLAVE_BUILD]/src/build/android/provision_devices.py", 342 "[SLAVE_BUILD]/src/build/android/provision_devices.py",
343 "-t", 343 "-t",
344 "Release", 344 "Release",
345 "--skip-wipe" 345 "--skip-wipe",
346 "--adb-key-files /usr/local/google/home/navabi/.android/*.pub"
346 ], 347 ],
347 "env": { 348 "env": {
348 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 349 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
349 }, 350 },
350 "name": "provision_devices" 351 "name": "provision_devices"
351 }, 352 },
352 { 353 {
353 "cmd": [ 354 "cmd": [
354 "python", 355 "python",
355 "-u", 356 "-u",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 "[SLAVE_BUILD]/src/build/android/asan_symbolize.py", 470 "[SLAVE_BUILD]/src/build/android/asan_symbolize.py",
470 "-l", 471 "-l",
471 "[SLAVE_BUILD]/src/out/Release/full_log" 472 "[SLAVE_BUILD]/src/out/Release/full_log"
472 ], 473 ],
473 "env": { 474 "env": {
474 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 475 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
475 }, 476 },
476 "name": "stack_tool_for_asan" 477 "name": "stack_tool_for_asan"
477 } 478 }
478 ] 479 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698