| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "/opt/infra-tools/authutil", | 4 "/opt/infra-tools/authutil", |
| 5 "token" | 5 "token" |
| 6 ], | 6 ], |
| 7 "cwd": "[SLAVE_BUILD]", |
| 7 "name": "Get auth token", | 8 "name": "Get auth token", |
| 8 "stdout": "/path/to/tmp/" | 9 "stdout": "/path/to/tmp/" |
| 9 }, | 10 }, |
| 10 { | 11 { |
| 11 "cmd": [ | 12 "cmd": [ |
| 12 "python", | 13 "python", |
| 13 "-u", | 14 "-u", |
| 14 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 15 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 15 "config", | 16 "config", |
| 16 "--spec", | 17 "--spec", |
| 17 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'.DEPS.git', 'managed': True, 'name': 'infra', 'url': 'https://chromium.googleso
urce.com/infra/infra.git'}]" | 18 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'infra', 'url': 'https://chromium.googlesource.com/infra/infr
a.git'}]" |
| 18 ], | 19 ], |
| 20 "cwd": "[SLAVE_BUILD]", |
| 19 "env": { | 21 "env": { |
| 20 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 22 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 21 }, | 23 }, |
| 22 "name": "gclient setup" | 24 "name": "gclient setup" |
| 23 }, | 25 }, |
| 24 { | 26 { |
| 25 "cmd": [ | 27 "cmd": [ |
| 26 "python", | 28 "python", |
| 27 "-u", | 29 "-u", |
| 28 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 30 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 29 "sync", | 31 "sync", |
| 30 "--verbose", | 32 "--verbose", |
| 31 "--with_branch_heads", | 33 "--with_branch_heads", |
| 32 "--nohooks", | 34 "--nohooks", |
| 33 "-j8", | 35 "-j8", |
| 34 "--reset", | 36 "--reset", |
| 35 "--force", | 37 "--force", |
| 36 "--upstream", | 38 "--upstream", |
| 37 "--no-nag-max", | 39 "--no-nag-max", |
| 38 "--delete_unversioned_trees", | 40 "--delete_unversioned_trees", |
| 39 "--revision", | 41 "--revision", |
| 40 "infra@origin/master", | 42 "infra@origin/master", |
| 41 "--output-json", | 43 "--output-json", |
| 42 "/path/to/tmp/json" | 44 "/path/to/tmp/json" |
| 43 ], | 45 ], |
| 46 "cwd": "[SLAVE_BUILD]", |
| 44 "env": { | 47 "env": { |
| 45 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 48 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 46 }, | 49 }, |
| 47 "name": "gclient sync", | 50 "name": "gclient sync", |
| 48 "~followup_annotations": [ | 51 "~followup_annotations": [ |
| 49 "@@@STEP_LOG_LINE@json.output@{@@@", | 52 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 50 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 53 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 51 "@@@STEP_LOG_LINE@json.output@ \"infra/\": {@@@", | 54 "@@@STEP_LOG_LINE@json.output@ \"infra/\": {@@@", |
| 52 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"5e03a58dc0850e5137a8eb
bce29610670c756aed\"@@@", | 55 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"5e03a58dc0850e5137a8eb
bce29610670c756aed\"@@@", |
| 53 "@@@STEP_LOG_LINE@json.output@ }@@@", | 56 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 54 "@@@STEP_LOG_LINE@json.output@ }@@@", | 57 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 55 "@@@STEP_LOG_LINE@json.output@}@@@", | 58 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 56 "@@@STEP_LOG_END@json.output@@@", | 59 "@@@STEP_LOG_END@json.output@@@", |
| 57 "@@@SET_BUILD_PROPERTY@got_revision@\"5e03a58dc0850e5137a8ebbce29610670c75
6aed\"@@@" | 60 "@@@SET_BUILD_PROPERTY@got_revision@\"5e03a58dc0850e5137a8ebbce29610670c75
6aed\"@@@" |
| 58 ] | 61 ] |
| 59 }, | 62 }, |
| 60 { | 63 { |
| 61 "cmd": [ | 64 "cmd": [ |
| 62 "python", | 65 "python", |
| 63 "-u", | 66 "-u", |
| 64 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 67 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 65 "recurse", | 68 "recurse", |
| 66 "git", | 69 "git", |
| 67 "config", | 70 "config", |
| 68 "user.name", | 71 "user.name", |
| 69 "local_bot" | 72 "local_bot" |
| 70 ], | 73 ], |
| 74 "cwd": "[SLAVE_BUILD]", |
| 71 "env": { | 75 "env": { |
| 72 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 76 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 73 }, | 77 }, |
| 74 "name": "gclient recurse (git config user.name)" | 78 "name": "gclient recurse (git config user.name)" |
| 75 }, | 79 }, |
| 76 { | 80 { |
| 77 "cmd": [ | 81 "cmd": [ |
| 78 "python", | 82 "python", |
| 79 "-u", | 83 "-u", |
| 80 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 84 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 81 "recurse", | 85 "recurse", |
| 82 "git", | 86 "git", |
| 83 "config", | 87 "config", |
| 84 "user.email", | 88 "user.email", |
| 85 "local_bot@example.com" | 89 "local_bot@example.com" |
| 86 ], | 90 ], |
| 91 "cwd": "[SLAVE_BUILD]", |
| 87 "env": { | 92 "env": { |
| 88 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 93 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 89 }, | 94 }, |
| 90 "name": "gclient recurse (git config user.email)" | 95 "name": "gclient recurse (git config user.email)" |
| 91 }, | 96 }, |
| 92 { | 97 { |
| 93 "cmd": [ | 98 "cmd": [ |
| 94 "python", | 99 "python", |
| 95 "-u", | 100 "-u", |
| 96 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 101 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 97 "runhooks" | 102 "runhooks" |
| 98 ], | 103 ], |
| 104 "cwd": "[SLAVE_BUILD]", |
| 99 "env": { | 105 "env": { |
| 100 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 106 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 101 }, | 107 }, |
| 102 "name": "gclient runhooks" | 108 "name": "gclient runhooks" |
| 103 }, | 109 }, |
| 104 { | 110 { |
| 105 "cmd": [ | 111 "cmd": [ |
| 106 "python", | 112 "python", |
| 107 "-u", | 113 "-u", |
| 108 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", | 114 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", |
| 109 "https://luci-config.appspot.com/_ah/api/config/v1/projects", | 115 "https://luci-config.appspot.com/_ah/api/config/v1/projects", |
| 110 "--outfile", | 116 "--outfile", |
| 111 "/path/to/tmp/", | 117 "/path/to/tmp/", |
| 112 "--headers-json", | 118 "--headers-json", |
| 113 "{\"Authorization\": \"Bearer ya29.foobar\"}" | 119 "{\"Authorization\": \"Bearer ya29.foobar\"}" |
| 114 ], | 120 ], |
| 121 "cwd": "[SLAVE_BUILD]", |
| 115 "name": "Get luci-config projects" | 122 "name": "Get luci-config projects" |
| 116 }, | 123 }, |
| 117 { | 124 { |
| 118 "cmd": [ | 125 "cmd": [ |
| 119 "python", | 126 "python", |
| 120 "-u", | 127 "-u", |
| 121 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", | 128 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", |
| 122 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2
Frecipe_engine%2Frefs%2Fheads%2Fmaster/config/recipes.cfg", | 129 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2
Frecipe_engine%2Frefs%2Fheads%2Fmaster/config/recipes.cfg", |
| 123 "--outfile", | 130 "--outfile", |
| 124 "/path/to/tmp/", | 131 "/path/to/tmp/", |
| 125 "--headers-json", | 132 "--headers-json", |
| 126 "{\"Authorization\": \"Bearer ya29.foobar\"}" | 133 "{\"Authorization\": \"Bearer ya29.foobar\"}" |
| 127 ], | 134 ], |
| 135 "cwd": "[SLAVE_BUILD]", |
| 128 "name": "Get project 'recipe_engine' config 'recipes.cfg'" | 136 "name": "Get project 'recipe_engine' config 'recipes.cfg'" |
| 129 }, | 137 }, |
| 130 { | 138 { |
| 131 "cmd": [ | 139 "cmd": [ |
| 132 "python", | 140 "python", |
| 133 "-u", | 141 "-u", |
| 134 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", | 142 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", |
| 135 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2
Fbuild%2Frefs%2Fheads%2Fmaster/config/recipes.cfg", | 143 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2
Fbuild%2Frefs%2Fheads%2Fmaster/config/recipes.cfg", |
| 136 "--outfile", | 144 "--outfile", |
| 137 "/path/to/tmp/", | 145 "/path/to/tmp/", |
| 138 "--headers-json", | 146 "--headers-json", |
| 139 "{\"Authorization\": \"Bearer ya29.foobar\"}" | 147 "{\"Authorization\": \"Bearer ya29.foobar\"}" |
| 140 ], | 148 ], |
| 149 "cwd": "[SLAVE_BUILD]", |
| 141 "name": "Get project 'build' config 'recipes.cfg'" | 150 "name": "Get project 'build' config 'recipes.cfg'" |
| 142 }, | 151 }, |
| 143 { | 152 { |
| 144 "cmd": [ | 153 "cmd": [ |
| 145 "python", | 154 "python", |
| 146 "-u", | 155 "-u", |
| 147 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | 156 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", |
| 148 "[CWD]/recipe_engine/recipe_engine", | 157 "[SLAVE_BUILD]/recipe_engine/recipe_engine", |
| 149 "511" | 158 "511" |
| 150 ], | 159 ], |
| 160 "cwd": "[SLAVE_BUILD]", |
| 151 "name": "makedirs recipe_engine directory", | 161 "name": "makedirs recipe_engine directory", |
| 152 "~followup_annotations": [ | 162 "~followup_annotations": [ |
| 153 "@@@STEP_LOG_LINE@python.inline@@@@", | 163 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 154 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 164 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 155 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 165 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 156 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 166 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 157 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 167 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 158 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 168 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 159 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 169 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 160 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 170 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 161 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 171 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 162 "@@@STEP_LOG_END@python.inline@@@" | 172 "@@@STEP_LOG_END@python.inline@@@" |
| 163 ] | 173 ] |
| 164 }, | 174 }, |
| 165 { | 175 { |
| 166 "cmd": [ | 176 "cmd": [ |
| 167 "python", | 177 "python", |
| 168 "-u", | 178 "-u", |
| 169 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 179 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
| 170 "--spec", | 180 "--spec", |
| 171 "cache_dir = '[CWD]/__cache_dir'\nsolutions = [{'deps_file': '.DEPS.git',
'managed': True, 'name': 'recipe_engine', 'url': 'https://repo.repo/recipe_engin
e'}]", | 181 "cache_dir = '[SLAVE_BUILD]/__cache_dir'\nsolutions = [{'deps_file': '.DEP
S.git', 'managed': True, 'name': 'recipe_engine', 'url': 'https://repo.repo/reci
pe_engine'}]", |
| 172 "--root", | 182 "--root", |
| 173 "recipe_engine", | 183 "recipe_engine", |
| 174 "--revision_mapping_file", | 184 "--revision_mapping_file", |
| 175 "{}", | 185 "{}", |
| 176 "--git-cache-dir", | 186 "--git-cache-dir", |
| 177 "[CWD]/__cache_dir", | 187 "[SLAVE_BUILD]/__cache_dir", |
| 178 "--output_json", | 188 "--output_json", |
| 179 "/path/to/tmp/json", | 189 "/path/to/tmp/json", |
| 180 "--revision", | 190 "--revision", |
| 181 "recipe_engine@HEAD", | 191 "recipe_engine@HEAD", |
| 182 "--force", | 192 "--force", |
| 183 "--output_manifest" | 193 "--output_manifest" |
| 184 ], | 194 ], |
| 185 "cwd": "[CWD]/recipe_engine", | 195 "cwd": "[SLAVE_BUILD]/recipe_engine", |
| 186 "env": { | 196 "env": { |
| 187 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 197 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 188 }, | 198 }, |
| 189 "name": "bot_update (without patch) - recipe_engine", | 199 "name": "bot_update (without patch) - recipe_engine", |
| 190 "~followup_annotations": [ | 200 "~followup_annotations": [ |
| 191 "@@@STEP_TEXT@Some step text@@@", | 201 "@@@STEP_TEXT@Some step text@@@", |
| 192 "@@@STEP_LOG_LINE@json.output@{@@@", | 202 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 193 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 203 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 194 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 204 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 195 "@@@STEP_LOG_LINE@json.output@ \"recipe_engine\": \"HEAD\"@@@", | 205 "@@@STEP_LOG_LINE@json.output@ \"recipe_engine\": \"HEAD\"@@@", |
| 196 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 206 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 197 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", | 207 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", |
| 198 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", | 208 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", |
| 199 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"recipe_engine\", @@@", | 209 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"recipe_engine\", @@@", |
| 200 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", | 210 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", |
| 201 "@@@STEP_LOG_LINE@json.output@ \"root\": \"recipe_engine\", @@@", | 211 "@@@STEP_LOG_LINE@json.output@ \"root\": \"recipe_engine\", @@@", |
| 202 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", | 212 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", |
| 203 "@@@STEP_LOG_LINE@json.output@}@@@", | 213 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 204 "@@@STEP_LOG_END@json.output@@@" | 214 "@@@STEP_LOG_END@json.output@@@" |
| 205 ] | 215 ] |
| 206 }, | 216 }, |
| 207 { | 217 { |
| 208 "cmd": [ | 218 "cmd": [ |
| 209 "python", | 219 "python", |
| 210 "-u", | 220 "-u", |
| 211 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | 221 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", |
| 212 "[CWD]/build/build", | 222 "[SLAVE_BUILD]/build/build", |
| 213 "511" | 223 "511" |
| 214 ], | 224 ], |
| 225 "cwd": "[SLAVE_BUILD]", |
| 215 "name": "makedirs build directory", | 226 "name": "makedirs build directory", |
| 216 "~followup_annotations": [ | 227 "~followup_annotations": [ |
| 217 "@@@STEP_LOG_LINE@python.inline@@@@", | 228 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 218 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 229 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 219 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 230 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 220 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 231 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 221 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 232 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 222 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 233 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 223 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 234 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 224 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 235 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 225 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 236 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 226 "@@@STEP_LOG_END@python.inline@@@" | 237 "@@@STEP_LOG_END@python.inline@@@" |
| 227 ] | 238 ] |
| 228 }, | 239 }, |
| 229 { | 240 { |
| 230 "cmd": [ | 241 "cmd": [ |
| 231 "python", | 242 "python", |
| 232 "-u", | 243 "-u", |
| 233 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 244 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
| 234 "--spec", | 245 "--spec", |
| 235 "cache_dir = '[CWD]/__cache_dir'\nsolutions = [{'deps_file': '.DEPS.git',
'managed': True, 'name': 'build', 'url': 'https://repo.repo/build'}]", | 246 "cache_dir = '[SLAVE_BUILD]/__cache_dir'\nsolutions = [{'deps_file': '.DEP
S.git', 'managed': True, 'name': 'build', 'url': 'https://repo.repo/build'}]", |
| 236 "--root", | 247 "--root", |
| 237 "build", | 248 "build", |
| 238 "--revision_mapping_file", | 249 "--revision_mapping_file", |
| 239 "{}", | 250 "{}", |
| 240 "--git-cache-dir", | 251 "--git-cache-dir", |
| 241 "[CWD]/__cache_dir", | 252 "[SLAVE_BUILD]/__cache_dir", |
| 242 "--output_json", | 253 "--output_json", |
| 243 "/path/to/tmp/json", | 254 "/path/to/tmp/json", |
| 244 "--revision", | 255 "--revision", |
| 245 "build@HEAD", | 256 "build@HEAD", |
| 246 "--force", | 257 "--force", |
| 247 "--output_manifest" | 258 "--output_manifest" |
| 248 ], | 259 ], |
| 249 "cwd": "[CWD]/build", | 260 "cwd": "[SLAVE_BUILD]/build", |
| 250 "env": { | 261 "env": { |
| 251 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 262 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 252 }, | 263 }, |
| 253 "name": "bot_update (without patch) - build", | 264 "name": "bot_update (without patch) - build", |
| 254 "~followup_annotations": [ | 265 "~followup_annotations": [ |
| 255 "@@@STEP_TEXT@Some step text@@@", | 266 "@@@STEP_TEXT@Some step text@@@", |
| 256 "@@@STEP_LOG_LINE@json.output@{@@@", | 267 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 257 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 268 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 258 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 269 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 259 "@@@STEP_LOG_LINE@json.output@ \"build\": \"HEAD\"@@@", | 270 "@@@STEP_LOG_LINE@json.output@ \"build\": \"HEAD\"@@@", |
| 260 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 271 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 261 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", | 272 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", |
| 262 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", | 273 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", |
| 263 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"build\", @@@", | 274 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"build\", @@@", |
| 264 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", | 275 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", |
| 265 "@@@STEP_LOG_LINE@json.output@ \"root\": \"build\", @@@", | 276 "@@@STEP_LOG_LINE@json.output@ \"root\": \"build\", @@@", |
| 266 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", | 277 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", |
| 267 "@@@STEP_LOG_LINE@json.output@}@@@", | 278 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 268 "@@@STEP_LOG_END@json.output@@@" | 279 "@@@STEP_LOG_END@json.output@@@" |
| 269 ] | 280 ] |
| 270 }, | 281 }, |
| 271 { | 282 { |
| 272 "cmd": [ | 283 "cmd": [ |
| 273 "[CWD]/infra/ENV/bin/python", | 284 "[SLAVE_BUILD]/infra/ENV/bin/python", |
| 274 "-u", | 285 "-u", |
| 275 "[CWD]/recipe_engine/recipe_engine/recipes.py", | 286 "[SLAVE_BUILD]/recipe_engine/recipe_engine/recipes.py", |
| 276 "--package", | 287 "--package", |
| 277 "[CWD]/recipe_engine/recipe_engine/infra/config/recipes.cfg", | 288 "[SLAVE_BUILD]/recipe_engine/recipe_engine/infra/config/recipes.cfg", |
| 278 "simulation_test" | 289 "simulation_test" |
| 279 ], | 290 ], |
| 291 "cwd": "[SLAVE_BUILD]", |
| 280 "name": "recipe_engine tests" | 292 "name": "recipe_engine tests" |
| 281 }, | 293 }, |
| 282 { | 294 { |
| 283 "cmd": [ | 295 "cmd": [ |
| 284 "[CWD]/infra/ENV/bin/python", | 296 "[SLAVE_BUILD]/infra/ENV/bin/python", |
| 285 "-u", | 297 "-u", |
| 286 "[CWD]/build/build/recipes.py", | 298 "[SLAVE_BUILD]/build/build/recipes.py", |
| 287 "--package", | 299 "--package", |
| 288 "[CWD]/build/build/infra/config/recipes.cfg", | 300 "[SLAVE_BUILD]/build/build/infra/config/recipes.cfg", |
| 289 "simulation_test" | 301 "simulation_test" |
| 290 ], | 302 ], |
| 303 "cwd": "[SLAVE_BUILD]", |
| 291 "name": "build tests" | 304 "name": "build tests" |
| 292 }, | 305 }, |
| 293 { | 306 { |
| 294 "name": "$result", | 307 "name": "$result", |
| 295 "recipe_result": null, | 308 "recipe_result": null, |
| 296 "status_code": 0 | 309 "status_code": 0 |
| 297 } | 310 } |
| 298 ] | 311 ] |
| OLD | NEW |