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

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

Issue 985273002: Changed recipe_modules base paths to be abstract entities in their own right. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "cat", 184 "cat",
185 "[SLAVE_BUILD]/src/chrome/VERSION" 185 "[SLAVE_BUILD]/src/chrome/VERSION"
186 ], 186 ],
187 "name": "get version", 187 "name": "get version",
188 "stdout": "/path/to/tmp/version" 188 "stdout": "/path/to/tmp/version"
189 }, 189 },
190 { 190 {
191 "cmd": [ 191 "cmd": [
192 "python", 192 "python",
193 "-u", 193 "-u",
194 "[BUILD]/scripts/slave/recipe_modules/gsutil/resources/gsutil_wrapper.py", 194 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py",
195 "--", 195 "--",
196 "[DEPOT_TOOLS]/gsutil.py", 196 "[DEPOT_TOOLS]/gsutil.py",
197 "--force-version", 197 "--force-version",
198 "4.7", 198 "4.7",
199 "--", 199 "--",
200 "cp", 200 "cp",
201 "gs://build-bucket/build_product.zip", 201 "gs://build-bucket/build_product.zip",
202 "[SLAVE_BUILD]/src/out/build_product.zip" 202 "[SLAVE_BUILD]/src/out/build_product.zip"
203 ], 203 ],
204 "name": "gsutil download_build_product" 204 "name": "gsutil download_build_product"
(...skipping 12 matching lines...) Expand all
217 "[DEPOT_TOOLS]/git_number.py" 217 "[DEPOT_TOOLS]/git_number.py"
218 ], 218 ],
219 "cwd": "[SLAVE_BUILD]/src", 219 "cwd": "[SLAVE_BUILD]/src",
220 "name": "git_number", 220 "name": "git_number",
221 "stdout": "/path/to/tmp/" 221 "stdout": "/path/to/tmp/"
222 }, 222 },
223 { 223 {
224 "cmd": [ 224 "cmd": [
225 "python", 225 "python",
226 "-u", 226 "-u",
227 "[BUILD]/scripts/slave/recipe_modules/adb/resources/list_devices.py", 227 "RECIPE_MODULE[adb]/resources/list_devices.py",
228 "['[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb', 'd evices']", 228 "['[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb', 'd evices']",
229 "/path/to/tmp/json" 229 "/path/to/tmp/json"
230 ], 230 ],
231 "name": "List adb devices", 231 "name": "List adb devices",
232 "~followup_annotations": [ 232 "~followup_annotations": [
233 "@@@STEP_LOG_LINE@json.output@[@@@", 233 "@@@STEP_LOG_LINE@json.output@[@@@",
234 "@@@STEP_LOG_LINE@json.output@ \"014E1F310401C009\"@@@", 234 "@@@STEP_LOG_LINE@json.output@ \"014E1F310401C009\"@@@",
235 "@@@STEP_LOG_LINE@json.output@]@@@", 235 "@@@STEP_LOG_LINE@json.output@]@@@",
236 "@@@STEP_LOG_END@json.output@@@" 236 "@@@STEP_LOG_END@json.output@@@"
237 ] 237 ]
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 413 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
414 }, 414 },
415 "name": "stack_tool_for_asan" 415 "name": "stack_tool_for_asan"
416 }, 416 },
417 { 417 {
418 "name": "$final_result", 418 "name": "$final_result",
419 "reason": "Infra Failure: Step('device_status_check') returned 1", 419 "reason": "Infra Failure: Step('device_status_check') returned 1",
420 "status_code": 1 420 "status_code": 1
421 } 421 }
422 ] 422 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698