| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", | 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", |
| 7 "/path/to/tmp/json", | 7 "/path/to/tmp/json", |
| 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug" | 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug" |
| 9 ], | 9 ], |
| 10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ] | 45 ] |
| 46 }, | 46 }, |
| 47 { | 47 { |
| 48 "cmd": [ | 48 "cmd": [ |
| 49 "python", | 49 "python", |
| 50 "-u", | 50 "-u", |
| 51 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 51 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 52 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 52 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
| 53 "/path/to/tmp/" | 53 "/path/to/tmp/" |
| 54 ], | 54 ], |
| 55 "cwd": "[SLAVE_BUILD]", | |
| 56 "name": "Get downloaded SKP_VERSION" | 55 "name": "Get downloaded SKP_VERSION" |
| 57 }, | 56 }, |
| 58 { | 57 { |
| 59 "cmd": [ | 58 "cmd": [ |
| 60 "python", | 59 "python", |
| 61 "-u", | 60 "-u", |
| 62 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 61 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 63 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 62 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
| 64 "/path/to/tmp/" | 63 "/path/to/tmp/" |
| 65 ], | 64 ], |
| 66 "cwd": "[SLAVE_BUILD]", | |
| 67 "name": "Get downloaded SK_IMAGE_VERSION" | 65 "name": "Get downloaded SK_IMAGE_VERSION" |
| 68 }, | 66 }, |
| 69 { | 67 { |
| 70 "cmd": [ | 68 "cmd": [ |
| 71 "python", | 69 "python", |
| 72 "-u", | 70 "-u", |
| 73 "\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", | 71 "\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", |
| 74 "[SWARM_OUT_DIR]/dm" | 72 "[SWARM_OUT_DIR]/dm" |
| 75 ], | 73 ], |
| 76 "cwd": "[SLAVE_BUILD]", | |
| 77 "env": { | 74 "env": { |
| 78 "PYTHONPATH": "build/scripts" | 75 "PYTHONPATH": "build/scripts" |
| 79 }, | 76 }, |
| 80 "name": "rmtree dm", | 77 "name": "rmtree dm", |
| 81 "~followup_annotations": [ | 78 "~followup_annotations": [ |
| 82 "@@@STEP_LOG_LINE@python.inline@@@@", | 79 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 83 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 80 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 84 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 81 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 85 "@@@STEP_LOG_LINE@python.inline@@@@", | 82 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 86 "@@@STEP_LOG_LINE@python.inline@@@@", | 83 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 87 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 84 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 88 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 85 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 89 "@@@STEP_LOG_END@python.inline@@@" | 86 "@@@STEP_LOG_END@python.inline@@@" |
| 90 ] | 87 ] |
| 91 }, | 88 }, |
| 92 { | 89 { |
| 93 "cmd": [ | 90 "cmd": [ |
| 94 "python", | 91 "python", |
| 95 "-u", | 92 "-u", |
| 96 "\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", | 93 "\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", |
| 97 "[SWARM_OUT_DIR]/dm", | 94 "[SWARM_OUT_DIR]/dm", |
| 98 "511" | 95 "511" |
| 99 ], | 96 ], |
| 100 "cwd": "[SLAVE_BUILD]", | |
| 101 "name": "makedirs dm", | 97 "name": "makedirs dm", |
| 102 "~followup_annotations": [ | 98 "~followup_annotations": [ |
| 103 "@@@STEP_LOG_LINE@python.inline@@@@", | 99 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 104 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 100 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 105 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 101 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 106 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 102 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 107 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 103 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 108 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 104 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 109 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 105 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 110 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 106 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 111 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 107 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 112 "@@@STEP_LOG_END@python.inline@@@" | 108 "@@@STEP_LOG_END@python.inline@@@" |
| 113 ] | 109 ] |
| 114 }, | 110 }, |
| 115 { | 111 { |
| 116 "cmd": [ | 112 "cmd": [ |
| 117 "python", | 113 "python", |
| 118 "-u", | 114 "-u", |
| 119 "\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", | 115 "\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", |
| 120 "[SLAVE_BUILD]/tmp", | 116 "[SLAVE_BUILD]/tmp", |
| 121 "511" | 117 "511" |
| 122 ], | 118 ], |
| 123 "cwd": "[SLAVE_BUILD]", | |
| 124 "name": "makedirs tmp_dir", | 119 "name": "makedirs tmp_dir", |
| 125 "~followup_annotations": [ | 120 "~followup_annotations": [ |
| 126 "@@@STEP_LOG_LINE@python.inline@@@@", | 121 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 127 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 122 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 128 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 123 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 129 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 124 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 130 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 125 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 131 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 126 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 132 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 127 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 133 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 128 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 "GCE", | 216 "GCE", |
| 222 "os", | 217 "os", |
| 223 "Ubuntu", | 218 "Ubuntu", |
| 224 "--uninterestingHashesFile", | 219 "--uninterestingHashesFile", |
| 225 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", | 220 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", |
| 226 "--writePath", | 221 "--writePath", |
| 227 "[SWARM_OUT_DIR]/dm", | 222 "[SWARM_OUT_DIR]/dm", |
| 228 "--nogpu", | 223 "--nogpu", |
| 229 "--dummy-flags" | 224 "--dummy-flags" |
| 230 ], | 225 ], |
| 231 "cwd": "[SLAVE_BUILD]", | |
| 232 "env": { | 226 "env": { |
| 233 "BUILDTYPE": "Debug", | 227 "BUILDTYPE": "Debug", |
| 234 "CHROME_HEADLESS": "1", | 228 "CHROME_HEADLESS": "1", |
| 235 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", | 229 "GYP_DEFINES": "skia_arch_type=x86_64 skia_gpu=0 skia_warnings_as_errors=0
", |
| 236 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", | 230 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", |
| 237 "SKIA_OUT": "[SLAVE_BUILD]/out" | 231 "SKIA_OUT": "[SLAVE_BUILD]/out" |
| 238 }, | 232 }, |
| 239 "name": "dm" | 233 "name": "dm" |
| 240 }, | 234 }, |
| 241 { | 235 { |
| 242 "name": "$result", | 236 "name": "$result", |
| 243 "recipe_result": null, | 237 "recipe_result": null, |
| 244 "status_code": 0 | 238 "status_code": 0 |
| 245 } | 239 } |
| 246 ] | 240 ] |
| OLD | NEW |