changeset 90:a94aca70dc35

add a stub step for downloading Fx
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 12 Jan 2011 13:01:45 -0800
parents 9b0ebf306b3c
children 2de829d2c3f7
files autobot/steps/firefox.py
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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