OLD | NEW |
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 { | 196 { |
197 "cmd": [ | 197 "cmd": [ |
198 "[DEPOT_TOOLS]/git_number.py" | 198 "[DEPOT_TOOLS]/git_number.py" |
199 ], | 199 ], |
200 "cwd": "[SLAVE_BUILD]/src", | 200 "cwd": "[SLAVE_BUILD]/src", |
201 "name": "git_number", | 201 "name": "git_number", |
202 "stdout": "/path/to/tmp/" | 202 "stdout": "/path/to/tmp/" |
203 }, | 203 }, |
204 { | 204 { |
205 "cmd": [ | 205 "cmd": [ |
| 206 "python", |
| 207 "-u", |
| 208 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 209 "[SLAVE_BUILD]/src/chrome/VERSION", |
| 210 "/path/to/tmp/" |
| 211 ], |
| 212 "name": "get version (2)" |
| 213 }, |
| 214 { |
| 215 "cmd": [ |
206 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py", | 216 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py", |
207 "Chrome.apk", | 217 "Chrome.apk", |
208 "-v", | 218 "-v", |
209 "--blacklist-file", | 219 "--blacklist-file", |
210 "[SLAVE_BUILD]/src/out/bad_devices.json", | 220 "[SLAVE_BUILD]/src/out/bad_devices.json", |
211 "--adb-path", | 221 "--adb-path", |
212 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb", | 222 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb", |
213 "-d", | 223 "-d", |
214 "abc123", | 224 "abc123", |
215 "--release" | 225 "--release" |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 711 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
702 }, | 712 }, |
703 "name": "stack_tool_for_asan" | 713 "name": "stack_tool_for_asan" |
704 }, | 714 }, |
705 { | 715 { |
706 "name": "$result", | 716 "name": "$result", |
707 "recipe_result": null, | 717 "recipe_result": null, |
708 "status_code": 0 | 718 "status_code": 0 |
709 } | 719 } |
710 ] | 720 ] |
OLD | NEW |