# HG changeset patch # User Jeff Hammel # Date 1294866105 28800 # Node ID a94aca70dc3519c29c18214776b8c96ad695d01b # Parent 9b0ebf306b3c6e9e8a6a88dae9bfeab20ff971c5 add a stub step for downloading Fx diff -r 9b0ebf306b3c -r a94aca70dc35 autobot/steps/firefox.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autobot/steps/firefox.py Wed Jan 12 13:01:45 2011 -0800 @@ -0,0 +1,16 @@ +""" +buildsteps related to the Firefox browser +""" + +from buildbot.process.properties import WithProperties +from buildbot.steps.shell import ShellCommand + +class DownloadFirefoxTarball(ShellCommand): + + def __init__(self, url, **kw): + """ + - url : location of the bundle + """ + ShellCommand.__init__(self, **kw) + self.addFactoryArguments(url=url) + self.command = ['wget', '-o', url] # STUB