| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", | 7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", |
| 8 "/path/to/tmp/" | 8 "/path/to/tmp/" |
| 9 ], | 9 ], |
| 10 "name": "Get downloaded SKP VERSION" | 10 "name": "Get downloaded SKP VERSION" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "42", | 57 "42", |
| 58 "[SLAVE_BUILD]/tmp/SVG_VERSION" | 58 "[SLAVE_BUILD]/tmp/SVG_VERSION" |
| 59 ], | 59 ], |
| 60 "name": "write SVG_VERSION" | 60 "name": "write SVG_VERSION" |
| 61 }, | 61 }, |
| 62 { | 62 { |
| 63 "cmd": [ | 63 "cmd": [ |
| 64 "python", | 64 "python", |
| 65 "-u", | 65 "-u", |
| 66 "\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", | 66 "\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", |
| 67 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6
4-Release-GN/data" | 67 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-R
elease-GN/data" |
| 68 ], | 68 ], |
| 69 "env": { | 69 "env": { |
| 70 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts" | 70 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts" |
| 71 }, | 71 }, |
| 72 "name": "rmtree data", | 72 "name": "rmtree data", |
| 73 "~followup_annotations": [ | 73 "~followup_annotations": [ |
| 74 "@@@STEP_LOG_LINE@python.inline@@@@", | 74 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 75 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 75 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 76 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 76 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 77 "@@@STEP_LOG_LINE@python.inline@@@@", | 77 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 78 "@@@STEP_LOG_LINE@python.inline@@@@", | 78 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 79 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 79 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 80 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 80 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 81 "@@@STEP_LOG_END@python.inline@@@" | 81 "@@@STEP_LOG_END@python.inline@@@" |
| 82 ] | 82 ] |
| 83 }, | 83 }, |
| 84 { | 84 { |
| 85 "cmd": [ | 85 "cmd": [ |
| 86 "python", | 86 "python", |
| 87 "-u", | 87 "-u", |
| 88 "\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", | 88 "\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", |
| 89 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6
4-Release-GN/data", | 89 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-R
elease-GN/data", |
| 90 "511" | 90 "511" |
| 91 ], | 91 ], |
| 92 "name": "makedirs data", | 92 "name": "makedirs data", |
| 93 "~followup_annotations": [ | 93 "~followup_annotations": [ |
| 94 "@@@STEP_LOG_LINE@python.inline@@@@", | 94 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 95 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 95 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 96 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 96 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 97 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 97 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 98 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 98 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 99 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 99 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 124 "8888", | 124 "8888", |
| 125 "gpu", | 125 "gpu", |
| 126 "nonrendering", | 126 "nonrendering", |
| 127 "angle", | 127 "angle", |
| 128 "hwui", | 128 "hwui", |
| 129 "f16", | 129 "f16", |
| 130 "srgb", | 130 "srgb", |
| 131 "msaa16", | 131 "msaa16", |
| 132 "nvpr16", | 132 "nvpr16", |
| 133 "nvprdit16", | 133 "nvprdit16", |
| 134 "glinst", | |
| 135 "glinst16", | |
| 136 "--match", | 134 "--match", |
| 137 "~interlaced1.png", | 135 "~interlaced1.png", |
| 138 "~interlaced2.png", | 136 "~interlaced2.png", |
| 139 "~interlaced3.png", | 137 "~interlaced3.png", |
| 140 "~inc0.gif", | 138 "~inc0.gif", |
| 141 "~inc1.gif", | 139 "~inc1.gif", |
| 142 "~incInterlaced.gif", | 140 "~incInterlaced.gif", |
| 143 "~inc0.jpg", | 141 "~inc0.jpg", |
| 144 "~incGray.jpg", | 142 "~incGray.jpg", |
| 145 "~inc0.wbmp", | 143 "~inc0.wbmp", |
| 146 "~inc1.wbmp", | 144 "~inc1.wbmp", |
| 147 "~inc0.webp", | 145 "~inc0.webp", |
| 148 "~inc1.webp", | 146 "~inc1.webp", |
| 149 "~inc0.ico", | 147 "~inc0.ico", |
| 150 "~inc1.ico", | 148 "~inc1.ico", |
| 151 "~inc0.png", | 149 "~inc0.png", |
| 152 "~inc1.png", | 150 "~inc1.png", |
| 153 "~inc2.png", | 151 "~inc2.png", |
| 154 "~inc12.png", | 152 "~inc12.png", |
| 155 "~inc13.png", | 153 "~inc13.png", |
| 156 "~inc14.png", | 154 "~inc14.png", |
| 157 "~inc0.webp", | 155 "~inc0.webp", |
| 158 "~inc1.webp", | 156 "~inc1.webp", |
| 159 "--outResultsFile", | 157 "--outResultsFile", |
| 160 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6
4-Release-GN/data/nanobench_abc123.json", | 158 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-R
elease-GN/data/nanobench_abc123.json", |
| 161 "--properties", | 159 "--properties", |
| 162 "gitHash", | 160 "gitHash", |
| 163 "abc123", | 161 "abc123", |
| 164 "build_number", | 162 "build_number", |
| 165 "5", | 163 "5", |
| 166 "--key", | 164 "--key", |
| 167 "arch", | 165 "arch", |
| 168 "x86_64", | 166 "x86_64", |
| 169 "compiler", | 167 "compiler", |
| 170 "Clang", | 168 "Clang", |
| 171 "cpu_or_gpu", | 169 "cpu_or_gpu", |
| 172 "CPU", | 170 "CPU", |
| 173 "cpu_or_gpu_value", | 171 "cpu_or_gpu_value", |
| 174 "AVX", | 172 "AVX2", |
| 175 "extra_config", | 173 "extra_config", |
| 176 "GN", | 174 "GN", |
| 177 "model", | 175 "model", |
| 178 "MacMini6.2", | 176 "GCE", |
| 179 "os", | 177 "os", |
| 180 "Mac" | 178 "Ubuntu" |
| 181 ], | 179 ], |
| 182 "env": { | 180 "cwd": "[SLAVE_BUILD]/skia", |
| 183 "BUILDTYPE": "Release", | |
| 184 "CHROME_HEADLESS": "1", | |
| 185 "SKIA_OUT": "[SLAVE_BUILD]/out" | |
| 186 }, | |
| 187 "name": "nanobench" | 181 "name": "nanobench" |
| 188 }, | 182 }, |
| 189 { | 183 { |
| 190 "cmd": [ | 184 "cmd": [ |
| 191 "python", | 185 "python", |
| 192 "-u", | 186 "-u", |
| 193 "\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", | 187 "\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", |
| 194 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6
4-Release-GN/data", | 188 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-R
elease-GN/data", |
| 195 "511" | 189 "511" |
| 196 ], | 190 ], |
| 197 "name": "makedirs perf_dir", | 191 "name": "makedirs perf_dir", |
| 198 "~followup_annotations": [ | 192 "~followup_annotations": [ |
| 199 "@@@STEP_LOG_LINE@python.inline@@@@", | 193 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 200 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 194 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 201 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 195 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 202 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 196 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 203 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 197 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 204 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 198 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 205 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 199 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 206 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 200 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 207 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 201 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 208 "@@@STEP_LOG_END@python.inline@@@" | 202 "@@@STEP_LOG_END@python.inline@@@" |
| 209 ] | 203 ] |
| 210 }, | 204 }, |
| 211 { | 205 { |
| 212 "name": "$result", | 206 "name": "$result", |
| 213 "recipe_result": null, | 207 "recipe_result": null, |
| 214 "status_code": 0 | 208 "status_code": 0 |
| 215 } | 209 } |
| 216 ] | 210 ] |
| OLD | NEW |