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

Unified Diff: scripts/master/factory/swarm_commands.py

Issue 10386096: Get Swarm Bots to Use Network Storage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « masters/master.chromium.swarm/master.cfg ('k') | scripts/master/factory/swarm_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/swarm_commands.py
diff --git a/scripts/master/factory/swarm_commands.py b/scripts/master/factory/swarm_commands.py
index ff28ef784c7e034c0900f957b196263195b7de38..d6bbbebef5e048b78f91b0c7b33c34fbd74f26d7 100644
--- a/scripts/master/factory/swarm_commands.py
+++ b/scripts/master/factory/swarm_commands.py
@@ -15,7 +15,8 @@ from master.log_parser import gtest_command
class SwarmCommands(commands.FactoryCommands):
"""Encapsulates methods to add swarm commands to a buildbot factory"""
- def AddTriggerSwarmTestStep(self, target_platform, swarm_server,
+ def AddTriggerSwarmTestStep(self, target_platform, swarm_server, data_server,
+ hashtable_dir, data_dest_dir,
min_shards, max_shards,
manifest_files):
script_path = self.PathJoin(self._script_dir, 'run_slavelastic.py')
@@ -25,7 +26,9 @@ class SwarmCommands(commands.FactoryCommands):
'buildnumber:-None')
command = [self._python, script_path, '-m', min_shards, '-s', max_shards,
- '-o', target_platform, '-u', swarm_server,
+ '-o', target_platform, '-u', swarm_server, '-d', data_server,
+ '--hashtable_dir', hashtable_dir,
+ '--data-dest-dir', data_dest_dir,
'-t', swarm_request_name_prefix]
command.extend(manifest_files)
« no previous file with comments | « masters/master.chromium.swarm/master.cfg ('k') | scripts/master/factory/swarm_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698