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

Commit

Permalink
bug 664728: update plugins used by Talos - download 64 bit flash for …
Browse files Browse the repository at this point in the history
…win764/fed64 only. r=bear
  • Loading branch information
Alice Nodelman committed Sep 21, 2011
1 parent 15aada1 commit 3a3b893
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions process/factory.py
Expand Up @@ -7313,14 +7313,26 @@ def addSetupSteps(self):
))

if self.plugins:
self.addStep(DownloadFile(
url="%s/%s" % (self.supportUrlBase, self.plugins),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))
self.addStep(UnpackFile(
filename=os.path.basename(self.plugins),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))
#32 bit (includes mac browsers)
if self.OS in ('xp', 'vista', 'win7', 'fedora', 'tegra_android', 'leopard', 'snowleopard', 'leopard-o'):
self.addStep(DownloadFile(
url="%s/%s" % (self.supportUrlBase, self.plugins['32']),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))
self.addStep(UnpackFile(
filename=os.path.basename(self.plugins['32']),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))
#64 bit
if self.OS in ('w764', 'fedora64'):
self.addStep(DownloadFile(
url="%s/%s" % (self.supportUrlBase, self.plugins['64']),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))
self.addStep(UnpackFile(
filename=os.path.basename(self.plugins['64']),
workdir=os.path.join(self.workdirBase, "talos/base_profile"),
))

for pageset in self.pagesets:
self.addStep(DownloadFile(
Expand Down

0 comments on commit 3a3b893

Please sign in to comment.