| 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':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]\ntarget
_os = ['llvm']" | 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]\ntarget
_os = ['llvm']" |
| 10 ], | 10 ], |
| 11 "cwd": "[SLAVE_BUILD]", | |
| 12 "env": { | 11 "env": { |
| 13 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 14 }, | 13 }, |
| 15 "name": "gclient setup" | 14 "name": "gclient setup" |
| 16 }, | 15 }, |
| 17 { | 16 { |
| 18 "cmd": [ | 17 "cmd": [ |
| 19 "python", | 18 "python", |
| 20 "-u", | 19 "-u", |
| 21 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 22 "sync", | 21 "sync", |
| 23 "--nohooks", | 22 "--nohooks", |
| 24 "--force", | 23 "--force", |
| 25 "--verbose", | 24 "--verbose", |
| 26 "--delete_unversioned_trees", | 25 "--delete_unversioned_trees", |
| 27 "--revision", | 26 "--revision", |
| 28 "skia@origin/master", | 27 "skia@origin/master", |
| 29 "--output-json", | 28 "--output-json", |
| 30 "/path/to/tmp/json" | 29 "/path/to/tmp/json" |
| 31 ], | 30 ], |
| 32 "cwd": "[SLAVE_BUILD]", | |
| 33 "env": { | 31 "env": { |
| 34 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 32 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 35 }, | 33 }, |
| 36 "name": "gclient sync", | 34 "name": "gclient sync", |
| 37 "~followup_annotations": [ | 35 "~followup_annotations": [ |
| 38 "@@@STEP_LOG_LINE@json.output@{@@@", | 36 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 37 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
| 41 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 39 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
| 42 "@@@STEP_LOG_LINE@json.output@ }@@@", | 40 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "name": "build nanobench" | 118 "name": "build nanobench" |
| 121 }, | 119 }, |
| 122 { | 120 { |
| 123 "cmd": [ | 121 "cmd": [ |
| 124 "python", | 122 "python", |
| 125 "-u", | 123 "-u", |
| 126 "\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", | 124 "\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", |
| 127 "[SLAVE_BUILD]/tmp", | 125 "[SLAVE_BUILD]/tmp", |
| 128 "511" | 126 "511" |
| 129 ], | 127 ], |
| 130 "cwd": "[SLAVE_BUILD]", | |
| 131 "name": "makedirs tmp_dir", | 128 "name": "makedirs tmp_dir", |
| 132 "~followup_annotations": [ | 129 "~followup_annotations": [ |
| 133 "@@@STEP_LOG_LINE@python.inline@@@@", | 130 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 134 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 131 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 135 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 132 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 136 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 133 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 137 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 134 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 138 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 135 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 139 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 136 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 140 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 137 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 141 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 138 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 142 "@@@STEP_LOG_END@python.inline@@@" | 139 "@@@STEP_LOG_END@python.inline@@@" |
| 143 ] | 140 ] |
| 144 }, | 141 }, |
| 145 { | 142 { |
| 146 "cmd": [ | 143 "cmd": [ |
| 147 "python", | 144 "python", |
| 148 "-u", | 145 "-u", |
| 149 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 146 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 150 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 147 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
| 151 "/path/to/tmp/" | 148 "/path/to/tmp/" |
| 152 ], | 149 ], |
| 153 "cwd": "[SLAVE_BUILD]", | |
| 154 "name": "Get downloaded SKP_VERSION" | 150 "name": "Get downloaded SKP_VERSION" |
| 155 }, | 151 }, |
| 156 { | 152 { |
| 157 "cmd": [ | 153 "cmd": [ |
| 158 "python", | 154 "python", |
| 159 "-u", | 155 "-u", |
| 160 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 156 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 161 "[SLAVE_BUILD]/skia/SKP_VERSION", | 157 "[SLAVE_BUILD]/skia/SKP_VERSION", |
| 162 "/path/to/tmp/" | 158 "/path/to/tmp/" |
| 163 ], | 159 ], |
| 164 "cwd": "[SLAVE_BUILD]", | |
| 165 "name": "Get expected SKP_VERSION" | 160 "name": "Get expected SKP_VERSION" |
| 166 }, | 161 }, |
| 167 { | 162 { |
| 168 "cmd": [ | 163 "cmd": [ |
| 169 "python", | 164 "python", |
| 170 "-u", | 165 "-u", |
| 171 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 166 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 172 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 167 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
| 173 "/path/to/tmp/" | 168 "/path/to/tmp/" |
| 174 ], | 169 ], |
| 175 "cwd": "[SLAVE_BUILD]", | |
| 176 "name": "Get downloaded SK_IMAGE_VERSION" | 170 "name": "Get downloaded SK_IMAGE_VERSION" |
| 177 }, | 171 }, |
| 178 { | 172 { |
| 179 "cmd": [ | 173 "cmd": [ |
| 180 "python", | 174 "python", |
| 181 "-u", | 175 "-u", |
| 182 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 176 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 183 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", | 177 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", |
| 184 "/path/to/tmp/" | 178 "/path/to/tmp/" |
| 185 ], | 179 ], |
| 186 "cwd": "[SLAVE_BUILD]", | |
| 187 "name": "Get expected SK_IMAGE_VERSION" | 180 "name": "Get expected SK_IMAGE_VERSION" |
| 188 }, | 181 }, |
| 189 { | 182 { |
| 190 "cmd": [ | 183 "cmd": [ |
| 191 "python", | 184 "python", |
| 192 "-u", | 185 "-u", |
| 193 "\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", | 186 "\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", |
| 194 "[SLAVE_BUILD]/dm" | 187 "[SLAVE_BUILD]/dm" |
| 195 ], | 188 ], |
| 196 "cwd": "[SLAVE_BUILD]", | |
| 197 "name": "rmtree dm", | 189 "name": "rmtree dm", |
| 198 "~followup_annotations": [ | 190 "~followup_annotations": [ |
| 199 "@@@STEP_LOG_LINE@python.inline@@@@", | 191 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 200 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 192 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 201 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 193 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 202 "@@@STEP_LOG_LINE@python.inline@@@@", | 194 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 203 "@@@STEP_LOG_LINE@python.inline@@@@", | 195 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 204 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 196 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 205 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 197 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 206 "@@@STEP_LOG_END@python.inline@@@" | 198 "@@@STEP_LOG_END@python.inline@@@" |
| 207 ] | 199 ] |
| 208 }, | 200 }, |
| 209 { | 201 { |
| 210 "cmd": [ | 202 "cmd": [ |
| 211 "python", | 203 "python", |
| 212 "-u", | 204 "-u", |
| 213 "\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", | 205 "\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", |
| 214 "[SLAVE_BUILD]/dm", | 206 "[SLAVE_BUILD]/dm", |
| 215 "511" | 207 "511" |
| 216 ], | 208 ], |
| 217 "cwd": "[SLAVE_BUILD]", | |
| 218 "name": "makedirs dm", | 209 "name": "makedirs dm", |
| 219 "~followup_annotations": [ | 210 "~followup_annotations": [ |
| 220 "@@@STEP_LOG_LINE@python.inline@@@@", | 211 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 221 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 212 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 222 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 213 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 223 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 214 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 224 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 215 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 225 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 216 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 226 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 217 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 227 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 218 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 "AVX2", | 302 "AVX2", |
| 312 "model", | 303 "model", |
| 313 "GCE", | 304 "GCE", |
| 314 "os", | 305 "os", |
| 315 "Ubuntu", | 306 "Ubuntu", |
| 316 "--writePath", | 307 "--writePath", |
| 317 "[SLAVE_BUILD]/dm", | 308 "[SLAVE_BUILD]/dm", |
| 318 "--nogpu", | 309 "--nogpu", |
| 319 "--dummy-flags" | 310 "--dummy-flags" |
| 320 ], | 311 ], |
| 321 "cwd": "[SLAVE_BUILD]", | |
| 322 "env": { | 312 "env": { |
| 323 "BUILDTYPE": "Debug", | 313 "BUILDTYPE": "Debug", |
| 324 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", | 314 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", |
| 325 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" | 315 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" |
| 326 }, | 316 }, |
| 327 "name": "dm", | 317 "name": "dm", |
| 328 "~followup_annotations": [ | 318 "~followup_annotations": [ |
| 329 "step returned non-zero exit code: 1", | 319 "step returned non-zero exit code: 1", |
| 330 "@@@STEP_FAILURE@@@" | 320 "@@@STEP_FAILURE@@@" |
| 331 ] | 321 ] |
| (...skipping 27 matching lines...) Expand all Loading... |
| 359 "--undefok", | 349 "--undefok", |
| 360 "-i", | 350 "-i", |
| 361 "[SLAVE_BUILD]/skia/resources", | 351 "[SLAVE_BUILD]/skia/resources", |
| 362 "--skps", | 352 "--skps", |
| 363 "[SLAVE_BUILD]/playback/skps", | 353 "[SLAVE_BUILD]/playback/skps", |
| 364 "--images", | 354 "--images", |
| 365 "[SLAVE_BUILD]/images/dm", | 355 "[SLAVE_BUILD]/images/dm", |
| 366 "--nogpu", | 356 "--nogpu", |
| 367 "--dummy-flags" | 357 "--dummy-flags" |
| 368 ], | 358 ], |
| 369 "cwd": "[SLAVE_BUILD]", | |
| 370 "env": { | 359 "env": { |
| 371 "BUILDTYPE": "Debug", | 360 "BUILDTYPE": "Debug", |
| 372 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", | 361 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", |
| 373 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" | 362 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-De
bug" |
| 374 }, | 363 }, |
| 375 "name": "nanobench" | 364 "name": "nanobench" |
| 376 }, | 365 }, |
| 377 { | 366 { |
| 378 "name": "$result", | 367 "name": "$result", |
| 379 "reason": "Failed build steps: dm", | 368 "reason": "Failed build steps: dm", |
| 380 "status_code": 1 | 369 "status_code": 1 |
| 381 } | 370 } |
| 382 ] | 371 ] |
| OLD | NEW |