| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 7 "config", | 7 "config", |
| 8 "--spec", | 8 "--spec", |
| 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/cra
shpad.git'}]" | 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpa
d/crashpad.git'}]" |
| 10 ], | 10 ], |
| 11 "env": { | 11 "env": { |
| 12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 13 }, | 13 }, |
| 14 "name": "gclient setup" | 14 "name": "gclient setup" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "cmd": [ | 17 "cmd": [ |
| 18 "python", | 18 "python", |
| 19 "-u", | 19 "-u", |
| 20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 21 "sync", | 21 "sync", |
| 22 "--verbose", |
| 23 "--with_branch_heads", |
| 22 "--nohooks", | 24 "--nohooks", |
| 25 "-j8", |
| 26 "--reset", |
| 23 "--force", | 27 "--force", |
| 24 "--verbose", | 28 "--upstream", |
| 29 "--no-nag-max", |
| 25 "--delete_unversioned_trees", | 30 "--delete_unversioned_trees", |
| 26 "--output-json", | 31 "--output-json", |
| 27 "/path/to/tmp/json" | 32 "/path/to/tmp/json" |
| 28 ], | 33 ], |
| 29 "env": { | 34 "env": { |
| 30 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 35 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 31 }, | 36 }, |
| 32 "name": "gclient sync", | 37 "name": "gclient sync", |
| 33 "~followup_annotations": [ | 38 "~followup_annotations": [ |
| 34 "@@@STEP_LOG_LINE@json.output@{@@@", | 39 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 35 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 36 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", |
| 37 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", | 42 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"e6ebda0f8dc589a150c612
132e67916df288f343\"@@@", |
| 38 "@@@STEP_LOG_LINE@json.output@ }@@@", | 43 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ }@@@", | 44 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 40 "@@@STEP_LOG_LINE@json.output@}@@@", | 45 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 41 "@@@STEP_LOG_END@json.output@@@" | 46 "@@@STEP_LOG_END@json.output@@@" |
| 42 ] | 47 ] |
| 43 }, | 48 }, |
| 44 { | 49 { |
| 45 "cmd": [ | 50 "cmd": [ |
| 46 "python", | 51 "python", |
| 47 "-u", | 52 "-u", |
| 48 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 53 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 54 "recurse", |
| 55 "git", |
| 56 "config", |
| 57 "user.name", |
| 58 "local_bot" |
| 59 ], |
| 60 "env": { |
| 61 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 62 }, |
| 63 "name": "gclient recurse (git config user.name)" |
| 64 }, |
| 65 { |
| 66 "cmd": [ |
| 67 "python", |
| 68 "-u", |
| 69 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 70 "recurse", |
| 71 "git", |
| 72 "config", |
| 73 "user.email", |
| 74 "local_bot@example.com" |
| 75 ], |
| 76 "env": { |
| 77 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 78 }, |
| 79 "name": "gclient recurse (git config user.email)" |
| 80 }, |
| 81 { |
| 82 "cmd": [ |
| 83 "python", |
| 84 "-u", |
| 85 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 49 "runhooks" | 86 "runhooks" |
| 50 ], | 87 ], |
| 51 "cwd": "[SLAVE_BUILD]/crashpad", | 88 "cwd": "[SLAVE_BUILD]/crashpad", |
| 52 "env": { | 89 "env": { |
| 53 "GYP_DEFINES": "target_arch=ia32", | 90 "GYP_DEFINES": "target_arch=ia32", |
| 54 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 91 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 55 }, | 92 }, |
| 56 "name": "gclient runhooks" | 93 "name": "gclient runhooks" |
| 57 }, | 94 }, |
| 58 { | 95 { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 71 "Release" | 108 "Release" |
| 72 ], | 109 ], |
| 73 "name": "run tests" | 110 "name": "run tests" |
| 74 }, | 111 }, |
| 75 { | 112 { |
| 76 "name": "$result", | 113 "name": "$result", |
| 77 "recipe_result": null, | 114 "recipe_result": null, |
| 78 "status_code": 0 | 115 "status_code": 0 |
| 79 } | 116 } |
| 80 ] | 117 ] |
| OLD | NEW |