Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 6 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 7 "config", | 7 "config", |
| 8 "--spec", | 8 "--spec", |
| 9 "cache_dir = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', ' managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromiu m/src.git'}]" | 9 "cache_dir = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', ' managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromiu m/src.git'}]" |
| 10 ], | 10 ], |
| 11 "cwd": "[SLAVE_BUILD]", | 11 "cwd": "[SLAVE_BUILD]", |
| 12 "env": { | |
| 13 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
|
Michael Achenbach
2016/02/05 11:56:41
This %(PATH)s doesn't really look right.
| |
| 14 }, | |
| 12 "name": "gclient setup" | 15 "name": "gclient setup" |
| 13 }, | 16 }, |
| 14 { | 17 { |
| 15 "cmd": [ | 18 "cmd": [ |
| 16 "python", | 19 "python", |
| 17 "-u", | 20 "-u", |
| 18 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 21 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 19 "sync", | 22 "sync", |
| 20 "--verbose", | 23 "--verbose", |
| 21 "--with_branch_heads", | 24 "--with_branch_heads", |
| 22 "--nohooks", | 25 "--nohooks", |
| 23 "-j8", | 26 "-j8", |
| 24 "--reset", | 27 "--reset", |
| 25 "--force", | 28 "--force", |
| 26 "--upstream", | 29 "--upstream", |
| 27 "--no-nag-max", | 30 "--no-nag-max", |
| 28 "--delete_unversioned_trees", | 31 "--delete_unversioned_trees", |
| 29 "--output-json", | 32 "--output-json", |
| 30 "/path/to/tmp/json" | 33 "/path/to/tmp/json" |
| 31 ], | 34 ], |
| 32 "cwd": "[SLAVE_BUILD]", | 35 "cwd": "[SLAVE_BUILD]", |
| 36 "env": { | |
| 37 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 38 }, | |
| 33 "name": "gclient sync", | 39 "name": "gclient sync", |
| 34 "~followup_annotations": [ | 40 "~followup_annotations": [ |
| 35 "@@@STEP_LOG_LINE@json.output@{@@@", | 41 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 36 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 42 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 37 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", | 43 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", |
| 38 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"f27fede2220bcd326aee3e 86ddfd4ebd0fe58cb9\"@@@", | 44 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"f27fede2220bcd326aee3e 86ddfd4ebd0fe58cb9\"@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ }@@@", | 45 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ }@@@", | 46 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 41 "@@@STEP_LOG_LINE@json.output@}@@@", | 47 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 42 "@@@STEP_LOG_END@json.output@@@" | 48 "@@@STEP_LOG_END@json.output@@@" |
| 43 ] | 49 ] |
| 44 }, | 50 }, |
| 45 { | 51 { |
| 46 "cmd": [ | 52 "cmd": [ |
| 47 "python", | 53 "python", |
| 48 "-u", | 54 "-u", |
| 49 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 55 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 50 "recurse", | 56 "recurse", |
| 51 "git", | 57 "git", |
| 52 "config", | 58 "config", |
| 53 "user.name", | 59 "user.name", |
| 54 "local_bot" | 60 "local_bot" |
| 55 ], | 61 ], |
| 56 "cwd": "[SLAVE_BUILD]", | 62 "cwd": "[SLAVE_BUILD]", |
| 63 "env": { | |
| 64 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 65 }, | |
| 57 "name": "gclient recurse (git config user.name)" | 66 "name": "gclient recurse (git config user.name)" |
| 58 }, | 67 }, |
| 59 { | 68 { |
| 60 "cmd": [ | 69 "cmd": [ |
| 61 "python", | 70 "python", |
| 62 "-u", | 71 "-u", |
| 63 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 72 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 64 "recurse", | 73 "recurse", |
| 65 "git", | 74 "git", |
| 66 "config", | 75 "config", |
| 67 "user.email", | 76 "user.email", |
| 68 "local_bot@example.com" | 77 "local_bot@example.com" |
| 69 ], | 78 ], |
| 70 "cwd": "[SLAVE_BUILD]", | 79 "cwd": "[SLAVE_BUILD]", |
| 80 "env": { | |
| 81 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 82 }, | |
| 71 "name": "gclient recurse (git config user.email)" | 83 "name": "gclient recurse (git config user.email)" |
| 72 }, | 84 }, |
| 73 { | 85 { |
| 74 "cmd": [ | 86 "cmd": [ |
| 75 "python", | 87 "python", |
| 76 "-u", | 88 "-u", |
| 77 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 89 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 78 "config", | 90 "config", |
| 79 "--spec", | 91 "--spec", |
| 80 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'WebKit', 'safesync_url': 'https://blink-status.appspot.com/lkgr', 'url': ' svn://svn.chromium.org/blink/trunk'}]" | 92 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'WebKit', 'safesync_url': 'https://blink-status.appspot.com/lkgr', 'url': ' svn://svn.chromium.org/blink/trunk'}]" |
| 81 ], | 93 ], |
| 82 "cwd": "[SLAVE_BUILD]/src/third_party", | 94 "cwd": "[SLAVE_BUILD]/src/third_party", |
| 95 "env": { | |
| 96 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 97 }, | |
| 83 "name": "[spec: WebKit] gclient setup" | 98 "name": "[spec: WebKit] gclient setup" |
| 84 }, | 99 }, |
| 85 { | 100 { |
| 86 "cmd": [ | 101 "cmd": [ |
| 87 "python", | 102 "python", |
| 88 "-u", | 103 "-u", |
| 89 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 104 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 90 "sync", | 105 "sync", |
| 91 "--nohooks", | 106 "--nohooks", |
| 92 "--force", | 107 "--force", |
| 93 "--verbose", | 108 "--verbose", |
| 94 "--delete_unversioned_trees", | 109 "--delete_unversioned_trees", |
| 95 "--with_branch_heads", | 110 "--with_branch_heads", |
| 96 "--revision", | 111 "--revision", |
| 97 "third_party/WebKit@123", | 112 "third_party/WebKit@123", |
| 98 "--output-json", | 113 "--output-json", |
| 99 "/path/to/tmp/json" | 114 "/path/to/tmp/json" |
| 100 ], | 115 ], |
| 101 "cwd": "[SLAVE_BUILD]/src/third_party", | 116 "cwd": "[SLAVE_BUILD]/src/third_party", |
| 117 "env": { | |
| 118 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 119 }, | |
| 102 "name": "[spec: WebKit] gclient sync", | 120 "name": "[spec: WebKit] gclient sync", |
| 103 "~followup_annotations": [ | 121 "~followup_annotations": [ |
| 104 "@@@STEP_LOG_LINE@json.output@{@@@", | 122 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 105 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 123 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 106 "@@@STEP_LOG_LINE@json.output@ \"WebKit/\": {@@@", | 124 "@@@STEP_LOG_LINE@json.output@ \"WebKit/\": {@@@", |
| 107 "@@@STEP_LOG_LINE@json.output@ \"revision\": 241198@@@", | 125 "@@@STEP_LOG_LINE@json.output@ \"revision\": 241198@@@", |
| 108 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 126 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 109 "@@@STEP_LOG_LINE@json.output@ \"src/blatley/\": {@@@", | 127 "@@@STEP_LOG_LINE@json.output@ \"src/blatley/\": {@@@", |
| 110 "@@@STEP_LOG_LINE@json.output@ \"revision\": 248087@@@", | 128 "@@@STEP_LOG_LINE@json.output@ \"revision\": 248087@@@", |
| 111 "@@@STEP_LOG_LINE@json.output@ }@@@", | 129 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 140 ] | 158 ] |
| 141 }, | 159 }, |
| 142 { | 160 { |
| 143 "cmd": [ | 161 "cmd": [ |
| 144 "python", | 162 "python", |
| 145 "-u", | 163 "-u", |
| 146 "RECIPE_PACKAGE[depot_tools]/gclient.py", | 164 "RECIPE_PACKAGE[depot_tools]/gclient.py", |
| 147 "runhooks" | 165 "runhooks" |
| 148 ], | 166 ], |
| 149 "cwd": "[SLAVE_BUILD]", | 167 "cwd": "[SLAVE_BUILD]", |
| 168 "env": { | |
| 169 "PATH": "%(PATH)s:RECIPE_PACKAGE[depot_tools]" | |
| 170 }, | |
| 150 "name": "gclient runhooks" | 171 "name": "gclient runhooks" |
| 151 }, | 172 }, |
| 152 { | 173 { |
| 153 "name": "$result", | 174 "name": "$result", |
| 154 "recipe_result": null, | 175 "recipe_result": null, |
| 155 "status_code": 0 | 176 "status_code": 0 |
| 156 } | 177 } |
| 157 ] | 178 ] |
| OLD | NEW |