| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "git", | 4 "git", |
| 5 "remote", | 5 "remote", |
| 6 "set-url", | 6 "set-url", |
| 7 "origin", | 7 "origin", |
| 8 "https://skia.googlesource.com/skia.git" | 8 "https://skia.googlesource.com/skia.git" |
| 9 ], | 9 ], |
| 10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 }, | 40 }, |
| 41 { | 41 { |
| 42 "cmd": [ | 42 "cmd": [ |
| 43 "python", | 43 "python", |
| 44 "-u", | 44 "-u", |
| 45 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 45 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 46 "config", | 46 "config", |
| 47 "--spec", | 47 "--spec", |
| 48 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]\ntarget
_os = ['llvm']" | 48 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]\ntarget
_os = ['llvm']" |
| 49 ], | 49 ], |
| 50 "cwd": "[SLAVE_BUILD]", | |
| 51 "env": { | 50 "env": { |
| 52 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 51 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 53 }, | 52 }, |
| 54 "name": "gclient setup" | 53 "name": "gclient setup" |
| 55 }, | 54 }, |
| 56 { | 55 { |
| 57 "cmd": [ | 56 "cmd": [ |
| 58 "python", | 57 "python", |
| 59 "-u", | 58 "-u", |
| 60 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 59 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 61 "sync", | 60 "sync", |
| 62 "--nohooks", | 61 "--nohooks", |
| 63 "--force", | 62 "--force", |
| 64 "--verbose", | 63 "--verbose", |
| 65 "--delete_unversioned_trees", | 64 "--delete_unversioned_trees", |
| 66 "--revision", | 65 "--revision", |
| 67 "skia@abc123", | 66 "skia@abc123", |
| 68 "--output-json", | 67 "--output-json", |
| 69 "/path/to/tmp/json" | 68 "/path/to/tmp/json" |
| 70 ], | 69 ], |
| 71 "cwd": "[SLAVE_BUILD]", | |
| 72 "env": { | 70 "env": { |
| 73 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 71 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 74 }, | 72 }, |
| 75 "name": "gclient sync", | 73 "name": "gclient sync", |
| 76 "~followup_annotations": [ | 74 "~followup_annotations": [ |
| 77 "@@@STEP_LOG_LINE@json.output@{@@@", | 75 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 78 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 76 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 79 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 77 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
| 80 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 78 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
| 81 "@@@STEP_LOG_LINE@json.output@ }@@@", | 79 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "name": "build nanobench" | 157 "name": "build nanobench" |
| 160 }, | 158 }, |
| 161 { | 159 { |
| 162 "cmd": [ | 160 "cmd": [ |
| 163 "python", | 161 "python", |
| 164 "-u", | 162 "-u", |
| 165 "\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", | 163 "\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", |
| 166 "[SLAVE_BUILD]/tmp", | 164 "[SLAVE_BUILD]/tmp", |
| 167 "511" | 165 "511" |
| 168 ], | 166 ], |
| 169 "cwd": "[SLAVE_BUILD]", | |
| 170 "name": "makedirs tmp_dir", | 167 "name": "makedirs tmp_dir", |
| 171 "~followup_annotations": [ | 168 "~followup_annotations": [ |
| 172 "@@@STEP_LOG_LINE@python.inline@@@@", | 169 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 173 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 170 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 174 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 171 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 175 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 172 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 176 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 173 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 177 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 174 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 178 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 175 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 179 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 176 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 180 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 177 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 181 "@@@STEP_LOG_END@python.inline@@@" | 178 "@@@STEP_LOG_END@python.inline@@@" |
| 182 ] | 179 ] |
| 183 }, | 180 }, |
| 184 { | 181 { |
| 185 "cmd": [ | 182 "cmd": [ |
| 186 "python", | 183 "python", |
| 187 "-u", | 184 "-u", |
| 188 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 185 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 189 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 186 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
| 190 "/path/to/tmp/" | 187 "/path/to/tmp/" |
| 191 ], | 188 ], |
| 192 "cwd": "[SLAVE_BUILD]", | |
| 193 "name": "Get downloaded SKP_VERSION" | 189 "name": "Get downloaded SKP_VERSION" |
| 194 }, | 190 }, |
| 195 { | 191 { |
| 196 "cmd": [ | 192 "cmd": [ |
| 197 "python", | 193 "python", |
| 198 "-u", | 194 "-u", |
| 199 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 195 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 200 "[SLAVE_BUILD]/skia/SKP_VERSION", | 196 "[SLAVE_BUILD]/skia/SKP_VERSION", |
| 201 "/path/to/tmp/" | 197 "/path/to/tmp/" |
| 202 ], | 198 ], |
| 203 "cwd": "[SLAVE_BUILD]", | |
| 204 "name": "Get expected SKP_VERSION" | 199 "name": "Get expected SKP_VERSION" |
| 205 }, | 200 }, |
| 206 { | 201 { |
| 207 "cmd": [ | 202 "cmd": [ |
| 208 "python", | 203 "python", |
| 209 "-u", | 204 "-u", |
| 210 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 205 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 211 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 206 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
| 212 "/path/to/tmp/" | 207 "/path/to/tmp/" |
| 213 ], | 208 ], |
| 214 "cwd": "[SLAVE_BUILD]", | |
| 215 "name": "Get downloaded SK_IMAGE_VERSION", | 209 "name": "Get downloaded SK_IMAGE_VERSION", |
| 216 "~followup_annotations": [ | 210 "~followup_annotations": [ |
| 217 "step returned non-zero exit code: 1", | 211 "step returned non-zero exit code: 1", |
| 218 "@@@STEP_EXCEPTION@@@" | 212 "@@@STEP_EXCEPTION@@@" |
| 219 ] | 213 ] |
| 220 }, | 214 }, |
| 221 { | 215 { |
| 222 "cmd": [ | 216 "cmd": [ |
| 223 "python", | 217 "python", |
| 224 "-u", | 218 "-u", |
| 225 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 219 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 226 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", | 220 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", |
| 227 "/path/to/tmp/" | 221 "/path/to/tmp/" |
| 228 ], | 222 ], |
| 229 "cwd": "[SLAVE_BUILD]", | |
| 230 "name": "Get expected SK_IMAGE_VERSION" | 223 "name": "Get expected SK_IMAGE_VERSION" |
| 231 }, | 224 }, |
| 232 { | 225 { |
| 233 "cmd": [ | 226 "cmd": [ |
| 234 "python", | 227 "python", |
| 235 "-u", | 228 "-u", |
| 236 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", | 229 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", |
| 237 "[SLAVE_BUILD]/images" | 230 "[SLAVE_BUILD]/images" |
| 238 ], | 231 ], |
| 239 "cwd": "[SLAVE_BUILD]", | |
| 240 "name": "rmtree images", | 232 "name": "rmtree images", |
| 241 "~followup_annotations": [ | 233 "~followup_annotations": [ |
| 242 "@@@STEP_LOG_LINE@python.inline@@@@", | 234 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 243 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 235 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 244 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 236 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 245 "@@@STEP_LOG_LINE@python.inline@@@@", | 237 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 246 "@@@STEP_LOG_LINE@python.inline@@@@", | 238 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 247 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 239 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 248 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 240 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 249 "@@@STEP_LOG_END@python.inline@@@" | 241 "@@@STEP_LOG_END@python.inline@@@" |
| 250 ] | 242 ] |
| 251 }, | 243 }, |
| 252 { | 244 { |
| 253 "cmd": [ | 245 "cmd": [ |
| 254 "python", | 246 "python", |
| 255 "-u", | 247 "-u", |
| 256 "\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", | 248 "\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", |
| 257 "[SLAVE_BUILD]/images", | 249 "[SLAVE_BUILD]/images", |
| 258 "511" | 250 "511" |
| 259 ], | 251 ], |
| 260 "cwd": "[SLAVE_BUILD]", | |
| 261 "name": "makedirs images", | 252 "name": "makedirs images", |
| 262 "~followup_annotations": [ | 253 "~followup_annotations": [ |
| 263 "@@@STEP_LOG_LINE@python.inline@@@@", | 254 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 264 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 255 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 265 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 256 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 266 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 257 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 267 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 258 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 268 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 259 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 269 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 260 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 270 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 261 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 271 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 262 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 272 "@@@STEP_LOG_END@python.inline@@@" | 263 "@@@STEP_LOG_END@python.inline@@@" |
| 273 ] | 264 ] |
| 274 }, | 265 }, |
| 275 { | 266 { |
| 276 "cmd": [ | 267 "cmd": [ |
| 277 "python", | 268 "python", |
| 278 "-u", | 269 "-u", |
| 279 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 270 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
| 280 "--", | 271 "--", |
| 281 "[DEPOT_TOOLS]/gsutil.py", | 272 "[DEPOT_TOOLS]/gsutil.py", |
| 282 "----", | 273 "----", |
| 283 "cp", | 274 "cp", |
| 284 "-R", | 275 "-R", |
| 285 "gs://chromium-skia-gm/skimage/v42/*", | 276 "gs://chromium-skia-gm/skimage/v42/*", |
| 286 "[SLAVE_BUILD]/images" | 277 "[SLAVE_BUILD]/images" |
| 287 ], | 278 ], |
| 288 "cwd": "[SLAVE_BUILD]", | |
| 289 "env": { | 279 "env": { |
| 290 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", | 280 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", |
| 291 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" | 281 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" |
| 292 }, | 282 }, |
| 293 "name": "gsutil download images" | 283 "name": "gsutil download images" |
| 294 }, | 284 }, |
| 295 { | 285 { |
| 296 "cmd": [ | 286 "cmd": [ |
| 297 "python", | 287 "python", |
| 298 "-u", | 288 "-u", |
| 299 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 289 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 300 "42", | 290 "42", |
| 301 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" | 291 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" |
| 302 ], | 292 ], |
| 303 "cwd": "[SLAVE_BUILD]", | |
| 304 "name": "write SK_IMAGE_VERSION" | 293 "name": "write SK_IMAGE_VERSION" |
| 305 }, | 294 }, |
| 306 { | 295 { |
| 307 "cmd": [ | 296 "cmd": [ |
| 308 "python", | 297 "python", |
| 309 "-u", | 298 "-u", |
| 310 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", | 299 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", |
| 311 "[SLAVE_BUILD]/dm" | 300 "[SLAVE_BUILD]/dm" |
| 312 ], | 301 ], |
| 313 "cwd": "[SLAVE_BUILD]", | |
| 314 "name": "rmtree dm", | 302 "name": "rmtree dm", |
| 315 "~followup_annotations": [ | 303 "~followup_annotations": [ |
| 316 "@@@STEP_LOG_LINE@python.inline@@@@", | 304 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 317 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 305 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 318 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 306 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 319 "@@@STEP_LOG_LINE@python.inline@@@@", | 307 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 320 "@@@STEP_LOG_LINE@python.inline@@@@", | 308 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 321 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 309 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 322 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 310 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 323 "@@@STEP_LOG_END@python.inline@@@" | 311 "@@@STEP_LOG_END@python.inline@@@" |
| 324 ] | 312 ] |
| 325 }, | 313 }, |
| 326 { | 314 { |
| 327 "cmd": [ | 315 "cmd": [ |
| 328 "python", | 316 "python", |
| 329 "-u", | 317 "-u", |
| 330 "\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", | 318 "\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", |
| 331 "[SLAVE_BUILD]/dm", | 319 "[SLAVE_BUILD]/dm", |
| 332 "511" | 320 "511" |
| 333 ], | 321 ], |
| 334 "cwd": "[SLAVE_BUILD]", | |
| 335 "name": "makedirs dm", | 322 "name": "makedirs dm", |
| 336 "~followup_annotations": [ | 323 "~followup_annotations": [ |
| 337 "@@@STEP_LOG_LINE@python.inline@@@@", | 324 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 338 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 325 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 339 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 326 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 340 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 327 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 341 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 328 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 342 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 329 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 343 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 330 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 344 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 331 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 "GCE", | 417 "GCE", |
| 431 "os", | 418 "os", |
| 432 "Ubuntu", | 419 "Ubuntu", |
| 433 "--uninterestingHashesFile", | 420 "--uninterestingHashesFile", |
| 434 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", | 421 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", |
| 435 "--writePath", | 422 "--writePath", |
| 436 "[SLAVE_BUILD]/dm", | 423 "[SLAVE_BUILD]/dm", |
| 437 "--nogpu", | 424 "--nogpu", |
| 438 "--dummy-flags" | 425 "--dummy-flags" |
| 439 ], | 426 ], |
| 440 "cwd": "[SLAVE_BUILD]", | |
| 441 "env": { | 427 "env": { |
| 442 "BUILDTYPE": "Debug", | 428 "BUILDTYPE": "Debug", |
| 443 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", | 429 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", |
| 444 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" | 430 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" |
| 445 }, | 431 }, |
| 446 "name": "dm" | 432 "name": "dm" |
| 447 }, | 433 }, |
| 448 { | 434 { |
| 449 "cmd": [ | 435 "cmd": [ |
| 450 "python", | 436 "python", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 474 "--undefok", | 460 "--undefok", |
| 475 "-i", | 461 "-i", |
| 476 "[SLAVE_BUILD]/skia/resources", | 462 "[SLAVE_BUILD]/skia/resources", |
| 477 "--skps", | 463 "--skps", |
| 478 "[SLAVE_BUILD]/playback/skps", | 464 "[SLAVE_BUILD]/playback/skps", |
| 479 "--images", | 465 "--images", |
| 480 "[SLAVE_BUILD]/images/dm", | 466 "[SLAVE_BUILD]/images/dm", |
| 481 "--nogpu", | 467 "--nogpu", |
| 482 "--dummy-flags" | 468 "--dummy-flags" |
| 483 ], | 469 ], |
| 484 "cwd": "[SLAVE_BUILD]", | |
| 485 "env": { | 470 "env": { |
| 486 "BUILDTYPE": "Debug", | 471 "BUILDTYPE": "Debug", |
| 487 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", | 472 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", |
| 488 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" | 473 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" |
| 489 }, | 474 }, |
| 490 "name": "nanobench" | 475 "name": "nanobench" |
| 491 }, | 476 }, |
| 492 { | 477 { |
| 493 "name": "$result", | 478 "name": "$result", |
| 494 "recipe_result": null, | 479 "recipe_result": null, |
| 495 "status_code": 0 | 480 "status_code": 0 |
| 496 } | 481 } |
| 497 ] | 482 ] |
| OLD | NEW |