OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[DEPOT_TOOLS]/gclient.py", | 6 "[DEPOT_TOOLS]/gclient.py", |
7 "config", | 7 "config", |
8 "--spec", | 8 "--spec", |
9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na
me': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]" | 9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na
me': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]" |
10 ], | 10 ], |
| 11 "cwd": "[SLAVE_BUILD]", |
11 "name": "gclient setup" | 12 "name": "gclient setup" |
12 }, | 13 }, |
13 { | 14 { |
14 "cmd": [ | 15 "cmd": [ |
15 "python", | 16 "python", |
16 "-u", | 17 "-u", |
17 "[DEPOT_TOOLS]/gclient.py", | 18 "[DEPOT_TOOLS]/gclient.py", |
18 "sync", | 19 "sync", |
19 "--nohooks", | 20 "--nohooks", |
20 "--force", | 21 "--force", |
21 "--verbose", | 22 "--verbose", |
22 "--delete_unversioned_trees", | 23 "--delete_unversioned_trees", |
23 "--output-json", | 24 "--output-json", |
24 "/path/to/tmp/json" | 25 "/path/to/tmp/json" |
25 ], | 26 ], |
| 27 "cwd": "[SLAVE_BUILD]", |
26 "name": "gclient sync", | 28 "name": "gclient sync", |
27 "~followup_annotations": [ | 29 "~followup_annotations": [ |
28 "@@@STEP_LOG_LINE@json.output@{@@@", | 30 "@@@STEP_LOG_LINE@json.output@{@@@", |
29 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 31 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
30 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 32 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
31 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 33 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
32 "@@@STEP_LOG_LINE@json.output@ }@@@", | 34 "@@@STEP_LOG_LINE@json.output@ }@@@", |
33 "@@@STEP_LOG_LINE@json.output@ }@@@", | 35 "@@@STEP_LOG_LINE@json.output@ }@@@", |
34 "@@@STEP_LOG_LINE@json.output@}@@@", | 36 "@@@STEP_LOG_LINE@json.output@}@@@", |
35 "@@@STEP_LOG_END@json.output@@@", | 37 "@@@STEP_LOG_END@json.output@@@", |
36 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" | 38 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" |
37 ] | 39 ] |
38 }, | 40 }, |
39 { | 41 { |
40 "cmd": [ | 42 "cmd": [ |
41 "python", | 43 "python", |
42 "-u", | 44 "-u", |
43 "\nimport os\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write(os.
path.join(os.path.expanduser('~'), 'src'))\n", | 45 "\nimport os\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write(os.
path.join(os.path.expanduser('~'), 'src'))\n", |
44 "/path/to/tmp/" | 46 "/path/to/tmp/" |
45 ], | 47 ], |
| 48 "cwd": "[SLAVE_BUILD]", |
46 "name": "get CHROME_PATH", | 49 "name": "get CHROME_PATH", |
47 "~followup_annotations": [ | 50 "~followup_annotations": [ |
48 "@@@STEP_LOG_LINE@python.inline@@@@", | 51 "@@@STEP_LOG_LINE@python.inline@@@@", |
49 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 52 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
50 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 53 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
51 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", | 54 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", |
52 "@@@STEP_LOG_LINE@python.inline@ f.write(os.path.join(os.path.expanduser(
'~'), 'src'))@@@", | 55 "@@@STEP_LOG_LINE@python.inline@ f.write(os.path.join(os.path.expanduser(
'~'), 'src'))@@@", |
53 "@@@STEP_LOG_END@python.inline@@@" | 56 "@@@STEP_LOG_END@python.inline@@@" |
54 ] | 57 ] |
55 }, | 58 }, |
(...skipping 11 matching lines...) Expand all Loading... |
67 "name": "build dm" | 70 "name": "build dm" |
68 }, | 71 }, |
69 { | 72 { |
70 "cmd": [ | 73 "cmd": [ |
71 "python", | 74 "python", |
72 "-u", | 75 "-u", |
73 "\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", | 76 "\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", |
74 "[SLAVE_BUILD]/tmp", | 77 "[SLAVE_BUILD]/tmp", |
75 "511" | 78 "511" |
76 ], | 79 ], |
| 80 "cwd": "[SLAVE_BUILD]", |
77 "name": "makedirs tmp_dir", | 81 "name": "makedirs tmp_dir", |
78 "~followup_annotations": [ | 82 "~followup_annotations": [ |
79 "@@@STEP_LOG_LINE@python.inline@@@@", | 83 "@@@STEP_LOG_LINE@python.inline@@@@", |
80 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 84 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
81 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 85 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
82 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 86 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
83 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 87 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
84 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 88 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
85 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 89 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
86 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 90 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
87 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 91 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
88 "@@@STEP_LOG_END@python.inline@@@" | 92 "@@@STEP_LOG_END@python.inline@@@" |
89 ] | 93 ] |
90 }, | 94 }, |
91 { | 95 { |
92 "cmd": [ | 96 "cmd": [ |
93 "python", | 97 "python", |
94 "-u", | 98 "-u", |
95 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 99 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
96 "[SLAVE_BUILD]/skia/SKP_VERSION", | 100 "[SLAVE_BUILD]/skia/SKP_VERSION", |
97 "/path/to/tmp/" | 101 "/path/to/tmp/" |
98 ], | 102 ], |
| 103 "cwd": "[SLAVE_BUILD]", |
99 "name": "Get expected SKP_VERSION" | 104 "name": "Get expected SKP_VERSION" |
100 }, | 105 }, |
101 { | 106 { |
102 "cmd": [ | 107 "cmd": [ |
103 "python", | 108 "python", |
104 "-u", | 109 "-u", |
105 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 110 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
106 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 111 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
107 "/path/to/tmp/" | 112 "/path/to/tmp/" |
108 ], | 113 ], |
| 114 "cwd": "[SLAVE_BUILD]", |
109 "name": "Get downloaded SKP_VERSION" | 115 "name": "Get downloaded SKP_VERSION" |
110 }, | 116 }, |
111 { | 117 { |
112 "cmd": [ | 118 "cmd": [ |
113 "python", | 119 "python", |
114 "-u", | 120 "-u", |
115 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py", | 121 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py", |
116 "--", | 122 "--", |
117 "[DEPOT_TOOLS]/gsutil.py", | 123 "[DEPOT_TOOLS]/gsutil.py", |
118 "--force-version", | 124 "--force-version", |
119 "3.25", | 125 "3.25", |
120 "--", | 126 "--", |
121 "cat", | 127 "cat", |
122 "gs://chromium-skia-gm/skimage/input/TIMESTAMP_LAST_UPLOAD_COMPLETED" | 128 "gs://chromium-skia-gm/skimage/input/TIMESTAMP_LAST_UPLOAD_COMPLETED" |
123 ], | 129 ], |
| 130 "cwd": "[SLAVE_BUILD]", |
124 "name": "gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED", | 131 "name": "gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED", |
125 "stdout": "/path/to/tmp/" | 132 "stdout": "/path/to/tmp/" |
126 }, | 133 }, |
127 { | 134 { |
128 "cmd": [ | 135 "cmd": [ |
129 "python", | 136 "python", |
130 "-u", | 137 "-u", |
131 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 138 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
132 "[SLAVE_BUILD]/tmp/SKIMAGE_VERSION", | 139 "[SLAVE_BUILD]/tmp/SKIMAGE_VERSION", |
133 "/path/to/tmp/" | 140 "/path/to/tmp/" |
134 ], | 141 ], |
| 142 "cwd": "[SLAVE_BUILD]", |
135 "name": "Get downloaded SKIMAGE_VERSION" | 143 "name": "Get downloaded SKIMAGE_VERSION" |
136 }, | 144 }, |
137 { | 145 { |
138 "cmd": [ | 146 "cmd": [ |
139 "python", | 147 "python", |
140 "-u", | 148 "-u", |
141 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", | 149 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", |
142 "[SLAVE_BUILD]/dm" | 150 "[SLAVE_BUILD]/dm" |
143 ], | 151 ], |
| 152 "cwd": "[SLAVE_BUILD]", |
144 "name": "rmtree dm", | 153 "name": "rmtree dm", |
145 "~followup_annotations": [ | 154 "~followup_annotations": [ |
146 "@@@STEP_LOG_LINE@python.inline@@@@", | 155 "@@@STEP_LOG_LINE@python.inline@@@@", |
147 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 156 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
148 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", | 157 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", |
149 "@@@STEP_LOG_LINE@python.inline@@@@", | 158 "@@@STEP_LOG_LINE@python.inline@@@@", |
150 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 159 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
151 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 160 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
152 "@@@STEP_LOG_END@python.inline@@@" | 161 "@@@STEP_LOG_END@python.inline@@@" |
153 ] | 162 ] |
154 }, | 163 }, |
155 { | 164 { |
156 "cmd": [ | 165 "cmd": [ |
157 "python", | 166 "python", |
158 "-u", | 167 "-u", |
159 "\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", | 168 "\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", |
160 "[SLAVE_BUILD]/dm", | 169 "[SLAVE_BUILD]/dm", |
161 "511" | 170 "511" |
162 ], | 171 ], |
| 172 "cwd": "[SLAVE_BUILD]", |
163 "name": "makedirs dm", | 173 "name": "makedirs dm", |
164 "~followup_annotations": [ | 174 "~followup_annotations": [ |
165 "@@@STEP_LOG_LINE@python.inline@@@@", | 175 "@@@STEP_LOG_LINE@python.inline@@@@", |
166 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 176 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
167 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 177 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
168 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 178 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
169 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 179 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
170 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 180 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
171 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 181 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
172 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 182 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "AVX", | 275 "AVX", |
266 "extra_config", | 276 "extra_config", |
267 "Recipes", | 277 "Recipes", |
268 "model", | 278 "model", |
269 "ShuttleA", | 279 "ShuttleA", |
270 "os", | 280 "os", |
271 "Ubuntu", | 281 "Ubuntu", |
272 "--nogpu", | 282 "--nogpu", |
273 "--dummy-flags" | 283 "--dummy-flags" |
274 ], | 284 ], |
| 285 "cwd": "[SLAVE_BUILD]", |
275 "name": "dm", | 286 "name": "dm", |
276 "~followup_annotations": [ | 287 "~followup_annotations": [ |
277 "step returned non-zero exit code: 1", | 288 "step returned non-zero exit code: 1", |
278 "@@@STEP_FAILURE@@@" | 289 "@@@STEP_FAILURE@@@" |
279 ] | 290 ] |
280 }, | 291 }, |
281 { | 292 { |
282 "cmd": [ | 293 "cmd": [ |
283 "python", | 294 "python", |
284 "-u", | 295 "-u", |
285 "RECIPE_MODULE[skia]/resources/upload_dm_results.py", | 296 "RECIPE_MODULE[skia]/resources/upload_dm_results.py", |
286 "[SLAVE_BUILD]/dm", | 297 "[SLAVE_BUILD]/dm", |
287 "164710", | 298 "164710", |
288 "Test-Ubuntu-GCC-ShuttleA-CPU-AVX-x86_64-Debug-Recipes", | 299 "Test-Ubuntu-GCC-ShuttleA-CPU-AVX-x86_64-Debug-Recipes", |
289 "6", | 300 "6", |
290 "", | 301 "", |
291 "[SLAVE_BUILD]/skia/common/py/utils" | 302 "[SLAVE_BUILD]/skia/common/py/utils" |
292 ], | 303 ], |
293 "cwd": "[SLAVE_BUILD]/skia", | 304 "cwd": "[SLAVE_BUILD]/skia", |
294 "name": "Upload DM Results" | 305 "name": "Upload DM Results" |
295 }, | 306 }, |
296 { | 307 { |
297 "name": "$final_result", | 308 "name": "$final_result", |
298 "reason": "Failed build steps: dm", | 309 "reason": "Failed build steps: dm", |
299 "status_code": 1 | 310 "status_code": 1 |
300 } | 311 } |
301 ] | 312 ] |
OLD | NEW |