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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_chromium_Mac.json

Issue 2291273005: Add counting the number of CPU's in goma module (Closed)
Patch Set: use 80 for linux Created 4 years, 3 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\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", 6 "\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",
7 "[BUILDER_CACHE]/mac_ng", 7 "[BUILDER_CACHE]/mac_ng",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout path", 10 "name": "makedirs checkout path",
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 "@@@STEP_LOG_LINE@json.output@ }@@@", 183 "@@@STEP_LOG_LINE@json.output@ }@@@",
184 "@@@STEP_LOG_LINE@json.output@ ]@@@", 184 "@@@STEP_LOG_LINE@json.output@ ]@@@",
185 "@@@STEP_LOG_LINE@json.output@}@@@", 185 "@@@STEP_LOG_LINE@json.output@}@@@",
186 "@@@STEP_LOG_END@json.output@@@" 186 "@@@STEP_LOG_END@json.output@@@"
187 ] 187 ]
188 }, 188 },
189 { 189 {
190 "cmd": [ 190 "cmd": [
191 "python", 191 "python",
192 "-u", 192 "-u",
193 "\nimport multiprocessing\n\ntry:\n jobs = min(200, multiprocessing.cpu_c ount() * 10)\nexcept NotImplementedError:\n jobs = 50\n\nprint jobs\n"
194 ],
195 "name": "ensure_goma.get the number of cpus",
196 "stdout": "/path/to/tmp/",
197 "~followup_annotations": [
198 "@@@STEP_NEST_LEVEL@1@@@",
199 "@@@STEP_LOG_LINE@python.inline@@@@",
200 "@@@STEP_LOG_LINE@python.inline@import multiprocessing@@@",
201 "@@@STEP_LOG_LINE@python.inline@@@@",
202 "@@@STEP_LOG_LINE@python.inline@try:@@@",
203 "@@@STEP_LOG_LINE@python.inline@ jobs = min(200, multiprocessing.cpu_coun t() * 10)@@@",
204 "@@@STEP_LOG_LINE@python.inline@except NotImplementedError:@@@",
205 "@@@STEP_LOG_LINE@python.inline@ jobs = 50@@@",
206 "@@@STEP_LOG_LINE@python.inline@@@@",
207 "@@@STEP_LOG_LINE@python.inline@print jobs@@@",
208 "@@@STEP_LOG_END@python.inline@@@"
209 ]
210 },
211 {
212 "cmd": [
213 "python",
214 "-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", 215 "\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 "[BUILDER_CACHE]/mac_ng/src/out/Release" 216 "[BUILDER_CACHE]/mac_ng/src/out/Release"
195 ], 217 ],
196 "name": "rmtree clobber", 218 "name": "rmtree clobber",
197 "~followup_annotations": [ 219 "~followup_annotations": [
198 "@@@STEP_LOG_LINE@python.inline@@@@", 220 "@@@STEP_LOG_LINE@python.inline@@@@",
199 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 221 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
200 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@", 222 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@",
201 "@@@STEP_LOG_LINE@python.inline@@@@", 223 "@@@STEP_LOG_LINE@python.inline@@@@",
202 "@@@STEP_LOG_LINE@python.inline@@@@", 224 "@@@STEP_LOG_LINE@python.inline@@@@",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 "dev" 398 "dev"
377 ], 399 ],
378 "name": "archive_build" 400 "name": "archive_build"
379 }, 401 },
380 { 402 {
381 "name": "$result", 403 "name": "$result",
382 "recipe_result": null, 404 "recipe_result": null,
383 "status_code": 0 405 "status_code": 0
384 } 406 }
385 ] 407 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698