Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.json

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "git", 4 "git",
5 "fetch" 5 "fetch"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]/skia", 7 "cwd": "[SLAVE_BUILD]/skia",
8 "name": "git fetch" 8 "name": "git fetch"
9 }, 9 },
10 { 10 {
(...skipping 18 matching lines...) Expand all
29 }, 29 },
30 { 30 {
31 "cmd": [ 31 "cmd": [
32 "python", 32 "python",
33 "-u", 33 "-u",
34 "[DEPOT_TOOLS]/gclient.py", 34 "[DEPOT_TOOLS]/gclient.py",
35 "config", 35 "config",
36 "--spec", 36 "--spec",
37 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]" 37 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]"
38 ], 38 ],
39 "cwd": "[SLAVE_BUILD]",
39 "name": "gclient setup" 40 "name": "gclient setup"
40 }, 41 },
41 { 42 {
42 "cmd": [ 43 "cmd": [
43 "python", 44 "python",
44 "-u", 45 "-u",
45 "[DEPOT_TOOLS]/gclient.py", 46 "[DEPOT_TOOLS]/gclient.py",
46 "sync", 47 "sync",
47 "--nohooks", 48 "--nohooks",
48 "--force", 49 "--force",
49 "--verbose", 50 "--verbose",
50 "--delete_unversioned_trees", 51 "--delete_unversioned_trees",
51 "--revision", 52 "--revision",
52 "skia@abc123", 53 "skia@abc123",
53 "--output-json", 54 "--output-json",
54 "/path/to/tmp/json" 55 "/path/to/tmp/json"
55 ], 56 ],
57 "cwd": "[SLAVE_BUILD]",
56 "name": "gclient sync", 58 "name": "gclient sync",
57 "~followup_annotations": [ 59 "~followup_annotations": [
58 "@@@STEP_LOG_LINE@json.output@{@@@", 60 "@@@STEP_LOG_LINE@json.output@{@@@",
59 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", 61 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@",
60 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", 62 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@",
61 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", 63 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@",
62 "@@@STEP_LOG_LINE@json.output@ }@@@", 64 "@@@STEP_LOG_LINE@json.output@ }@@@",
63 "@@@STEP_LOG_LINE@json.output@ }@@@", 65 "@@@STEP_LOG_LINE@json.output@ }@@@",
64 "@@@STEP_LOG_LINE@json.output@}@@@", 66 "@@@STEP_LOG_LINE@json.output@}@@@",
65 "@@@STEP_LOG_END@json.output@@@", 67 "@@@STEP_LOG_END@json.output@@@",
(...skipping 14 matching lines...) Expand all
80 "name": "build dm" 82 "name": "build dm"
81 }, 83 },
82 { 84 {
83 "cmd": [ 85 "cmd": [
84 "python", 86 "python",
85 "-u", 87 "-u",
86 "\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",
87 "[SLAVE_BUILD]/tmp", 89 "[SLAVE_BUILD]/tmp",
88 "511" 90 "511"
89 ], 91 ],
92 "cwd": "[SLAVE_BUILD]",
90 "name": "makedirs tmp_dir", 93 "name": "makedirs tmp_dir",
91 "~followup_annotations": [ 94 "~followup_annotations": [
92 "@@@STEP_LOG_LINE@python.inline@@@@", 95 "@@@STEP_LOG_LINE@python.inline@@@@",
93 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 96 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
94 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 97 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
95 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 98 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
96 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 99 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
97 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 100 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
98 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 101 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
99 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 102 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
100 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 103 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
101 "@@@STEP_LOG_END@python.inline@@@" 104 "@@@STEP_LOG_END@python.inline@@@"
102 ] 105 ]
103 }, 106 },
104 { 107 {
105 "cmd": [ 108 "cmd": [
106 "python", 109 "python",
107 "-u", 110 "-u",
108 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 111 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
109 "[SLAVE_BUILD]/skia/SKP_VERSION", 112 "[SLAVE_BUILD]/skia/SKP_VERSION",
110 "/path/to/tmp/" 113 "/path/to/tmp/"
111 ], 114 ],
115 "cwd": "[SLAVE_BUILD]",
112 "name": "Get expected SKP_VERSION" 116 "name": "Get expected SKP_VERSION"
113 }, 117 },
114 { 118 {
115 "cmd": [ 119 "cmd": [
116 "python", 120 "python",
117 "-u", 121 "-u",
118 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 122 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
119 "[SLAVE_BUILD]/tmp/SKP_VERSION", 123 "[SLAVE_BUILD]/tmp/SKP_VERSION",
120 "/path/to/tmp/" 124 "/path/to/tmp/"
121 ], 125 ],
126 "cwd": "[SLAVE_BUILD]",
122 "name": "Get downloaded SKP_VERSION" 127 "name": "Get downloaded SKP_VERSION"
123 }, 128 },
124 { 129 {
125 "cmd": [ 130 "cmd": [
126 "python", 131 "python",
127 "-u", 132 "-u",
128 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py", 133 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py",
129 "--", 134 "--",
130 "[DEPOT_TOOLS]/gsutil.py", 135 "[DEPOT_TOOLS]/gsutil.py",
131 "--force-version", 136 "--force-version",
132 "3.25", 137 "3.25",
133 "--", 138 "--",
134 "cat", 139 "cat",
135 "gs://chromium-skia-gm/skimage/input/TIMESTAMP_LAST_UPLOAD_COMPLETED" 140 "gs://chromium-skia-gm/skimage/input/TIMESTAMP_LAST_UPLOAD_COMPLETED"
136 ], 141 ],
142 "cwd": "[SLAVE_BUILD]",
137 "name": "gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED", 143 "name": "gsutil cat TIMESTAMP_LAST_UPLOAD_COMPLETED",
138 "stdout": "/path/to/tmp/" 144 "stdout": "/path/to/tmp/"
139 }, 145 },
140 { 146 {
141 "cmd": [ 147 "cmd": [
142 "python", 148 "python",
143 "-u", 149 "-u",
144 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 150 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
145 "[SLAVE_BUILD]/tmp/SKIMAGE_VERSION", 151 "[SLAVE_BUILD]/tmp/SKIMAGE_VERSION",
146 "/path/to/tmp/" 152 "/path/to/tmp/"
147 ], 153 ],
154 "cwd": "[SLAVE_BUILD]",
148 "name": "Get downloaded SKIMAGE_VERSION" 155 "name": "Get downloaded SKIMAGE_VERSION"
149 }, 156 },
150 { 157 {
151 "cmd": [ 158 "cmd": [
152 "python", 159 "python",
153 "-u", 160 "-u",
154 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists( sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", 161 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists( sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
155 "[SLAVE_BUILD]/dm" 162 "[SLAVE_BUILD]/dm"
156 ], 163 ],
164 "cwd": "[SLAVE_BUILD]",
157 "name": "rmtree dm", 165 "name": "rmtree dm",
158 "~followup_annotations": [ 166 "~followup_annotations": [
159 "@@@STEP_LOG_LINE@python.inline@@@@", 167 "@@@STEP_LOG_LINE@python.inline@@@@",
160 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 168 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
161 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", 169 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@",
162 "@@@STEP_LOG_LINE@python.inline@@@@", 170 "@@@STEP_LOG_LINE@python.inline@@@@",
163 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", 171 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
164 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@", 172 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
165 "@@@STEP_LOG_END@python.inline@@@" 173 "@@@STEP_LOG_END@python.inline@@@"
166 ] 174 ]
167 }, 175 },
168 { 176 {
169 "cmd": [ 177 "cmd": [
170 "python", 178 "python",
171 "-u", 179 "-u",
172 "\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", 180 "\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",
173 "[SLAVE_BUILD]/dm", 181 "[SLAVE_BUILD]/dm",
174 "511" 182 "511"
175 ], 183 ],
184 "cwd": "[SLAVE_BUILD]",
176 "name": "makedirs dm", 185 "name": "makedirs dm",
177 "~followup_annotations": [ 186 "~followup_annotations": [
178 "@@@STEP_LOG_LINE@python.inline@@@@", 187 "@@@STEP_LOG_LINE@python.inline@@@@",
179 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 188 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
180 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 189 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
181 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 190 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
182 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 191 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
183 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 192 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
184 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 193 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
185 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 194 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "TSAN", 288 "TSAN",
280 "model", 289 "model",
281 "GCE", 290 "GCE",
282 "os", 291 "os",
283 "Ubuntu", 292 "Ubuntu",
284 "--uninterestingHashesFile", 293 "--uninterestingHashesFile",
285 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", 294 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
286 "--nogpu", 295 "--nogpu",
287 "--dummy-flags" 296 "--dummy-flags"
288 ], 297 ],
298 "cwd": "[SLAVE_BUILD]",
289 "env": { 299 "env": {
290 "ASAN_OPTIONS": "symbolize=1 detect_leaks=1", 300 "ASAN_OPTIONS": "symbolize=1 detect_leaks=1",
291 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1 suppressions=[SLAVE_BUIL D]/skia/tools/lsan.supp", 301 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1 suppressions=[SLAVE_BUIL D]/skia/tools/lsan.supp",
292 "TSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/tsan.supp" 302 "TSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/tsan.supp"
293 }, 303 },
294 "name": "dm" 304 "name": "dm"
295 }, 305 },
296 { 306 {
297 "cmd": [ 307 "cmd": [
298 "python", 308 "python",
299 "-u", 309 "-u",
300 "RECIPE_MODULE[skia]/resources/upload_dm_results.py", 310 "RECIPE_MODULE[skia]/resources/upload_dm_results.py",
301 "[SLAVE_BUILD]/dm", 311 "[SLAVE_BUILD]/dm",
302 "164710", 312 "164710",
303 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN", 313 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN",
304 "5", 314 "5",
305 "", 315 "",
306 "[SLAVE_BUILD]/skia/common/py/utils" 316 "[SLAVE_BUILD]/skia/common/py/utils"
307 ], 317 ],
308 "cwd": "[SLAVE_BUILD]/skia", 318 "cwd": "[SLAVE_BUILD]/skia",
309 "name": "Upload DM Results" 319 "name": "Upload DM Results"
310 } 320 }
311 ] 321 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698