Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
merge from default
Browse files Browse the repository at this point in the history
--HG--
branch : production-0.8
  • Loading branch information
hwine committed Dec 21, 2012
2 parents 1cdc256 + 2f1f662 commit e1a4fe9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2465,13 +2465,21 @@ def generateSpiderMonkeyObjects(project, config, SLAVES):
for a in factory_platform_args:
if a in pf:
factory_kwargs[a] = pf[a]
factory_kwargs['env'] = env

extra_args = [ '-r', WithProperties("%(revision)s") ]
for url in config['branchconfig']['base_mirror_urls']:
extra_args += [ '-m', "%s/%s" % (url, config['repo_path']) ]
for url in config['branchconfig']['base_bundle_urls']:
extra_args += [ '-b', "%s/%s.hg" % (url, config['repo_path']) ]
extra_args += [variant]

f = ScriptFactory(
config['scripts_repo'],
'scripts/spidermonkey_builds/spidermonkey.sh',
interpreter=interpreter,
log_eval_func=rc_eval_func({1: WARNINGS}),
extra_args=(variant,),
extra_args=tuple(extra_args),
script_timeout=3600,
**factory_kwargs
)
Expand Down

0 comments on commit e1a4fe9

Please sign in to comment.