| 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 "~followup_annotations": [ | 190 "~followup_annotations": [ |
| 195 "step returned non-zero exit code: 1", | 191 "step returned non-zero exit code: 1", |
| 196 "@@@STEP_EXCEPTION@@@" | 192 "@@@STEP_EXCEPTION@@@" |
| 197 ] | 193 ] |
| 198 }, | 194 }, |
| 199 { | 195 { |
| 200 "cmd": [ | 196 "cmd": [ |
| 201 "python", | 197 "python", |
| 202 "-u", | 198 "-u", |
| 203 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 199 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 204 "[SLAVE_BUILD]/skia/SKP_VERSION", | 200 "[SLAVE_BUILD]/skia/SKP_VERSION", |
| 205 "/path/to/tmp/" | 201 "/path/to/tmp/" |
| 206 ], | 202 ], |
| 207 "cwd": "[SLAVE_BUILD]", | |
| 208 "name": "Get expected SKP_VERSION" | 203 "name": "Get expected SKP_VERSION" |
| 209 }, | 204 }, |
| 210 { | 205 { |
| 211 "cmd": [ | 206 "cmd": [ |
| 212 "python", | 207 "python", |
| 213 "-u", | 208 "-u", |
| 214 "\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", | 209 "\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", |
| 215 "[SLAVE_BUILD]/playback/skps" | 210 "[SLAVE_BUILD]/playback/skps" |
| 216 ], | 211 ], |
| 217 "cwd": "[SLAVE_BUILD]", | |
| 218 "name": "rmtree skps", | 212 "name": "rmtree skps", |
| 219 "~followup_annotations": [ | 213 "~followup_annotations": [ |
| 220 "@@@STEP_LOG_LINE@python.inline@@@@", | 214 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 221 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 215 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 222 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 216 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 223 "@@@STEP_LOG_LINE@python.inline@@@@", | 217 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 224 "@@@STEP_LOG_LINE@python.inline@@@@", | 218 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 225 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 219 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 226 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 220 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 227 "@@@STEP_LOG_END@python.inline@@@" | 221 "@@@STEP_LOG_END@python.inline@@@" |
| 228 ] | 222 ] |
| 229 }, | 223 }, |
| 230 { | 224 { |
| 231 "cmd": [ | 225 "cmd": [ |
| 232 "python", | 226 "python", |
| 233 "-u", | 227 "-u", |
| 234 "\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", | 228 "\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", |
| 235 "[SLAVE_BUILD]/playback/skps", | 229 "[SLAVE_BUILD]/playback/skps", |
| 236 "511" | 230 "511" |
| 237 ], | 231 ], |
| 238 "cwd": "[SLAVE_BUILD]", | |
| 239 "name": "makedirs skps", | 232 "name": "makedirs skps", |
| 240 "~followup_annotations": [ | 233 "~followup_annotations": [ |
| 241 "@@@STEP_LOG_LINE@python.inline@@@@", | 234 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 242 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 235 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 243 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 236 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 244 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 237 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 245 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 238 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 246 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 239 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 247 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 240 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 248 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 241 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 249 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 242 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 250 "@@@STEP_LOG_END@python.inline@@@" | 243 "@@@STEP_LOG_END@python.inline@@@" |
| 251 ] | 244 ] |
| 252 }, | 245 }, |
| 253 { | 246 { |
| 254 "cmd": [ | 247 "cmd": [ |
| 255 "python", | 248 "python", |
| 256 "-u", | 249 "-u", |
| 257 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 250 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
| 258 "--", | 251 "--", |
| 259 "[DEPOT_TOOLS]/gsutil.py", | 252 "[DEPOT_TOOLS]/gsutil.py", |
| 260 "----", | 253 "----", |
| 261 "cp", | 254 "cp", |
| 262 "-R", | 255 "-R", |
| 263 "gs://chromium-skia-gm/playback_42/skps/*", | 256 "gs://chromium-skia-gm/playback_42/skps/*", |
| 264 "[SLAVE_BUILD]/playback/skps" | 257 "[SLAVE_BUILD]/playback/skps" |
| 265 ], | 258 ], |
| 266 "cwd": "[SLAVE_BUILD]", | |
| 267 "env": { | 259 "env": { |
| 268 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", | 260 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", |
| 269 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" | 261 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" |
| 270 }, | 262 }, |
| 271 "name": "gsutil download skps" | 263 "name": "gsutil download skps" |
| 272 }, | 264 }, |
| 273 { | 265 { |
| 274 "cmd": [ | 266 "cmd": [ |
| 275 "python", | 267 "python", |
| 276 "-u", | 268 "-u", |
| 277 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 269 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 278 "42", | 270 "42", |
| 279 "[SLAVE_BUILD]/tmp/SKP_VERSION" | 271 "[SLAVE_BUILD]/tmp/SKP_VERSION" |
| 280 ], | 272 ], |
| 281 "cwd": "[SLAVE_BUILD]", | |
| 282 "name": "write SKP_VERSION" | 273 "name": "write SKP_VERSION" |
| 283 }, | 274 }, |
| 284 { | 275 { |
| 285 "cmd": [ | 276 "cmd": [ |
| 286 "python", | 277 "python", |
| 287 "-u", | 278 "-u", |
| 288 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 279 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 289 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 280 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
| 290 "/path/to/tmp/" | 281 "/path/to/tmp/" |
| 291 ], | 282 ], |
| 292 "cwd": "[SLAVE_BUILD]", | |
| 293 "name": "Get downloaded SK_IMAGE_VERSION" | 283 "name": "Get downloaded SK_IMAGE_VERSION" |
| 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 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", | 290 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", |
| 301 "/path/to/tmp/" | 291 "/path/to/tmp/" |
| 302 ], | 292 ], |
| 303 "cwd": "[SLAVE_BUILD]", | |
| 304 "name": "Get expected SK_IMAGE_VERSION" | 293 "name": "Get expected 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 |