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

Side by Side Diff: build/scripts/master/factory/v8_commands.py

Issue 26399003: Remove unused code for v8 tester-only bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/scripts/master/factory/v8_factory.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Set of utilities to add commands to a buildbot factory. 5 """Set of utilities to add commands to a buildbot factory.
6 6
7 This is based on commands.py and adds chromium-specific commands.""" 7 This is based on commands.py and adds chromium-specific commands."""
8 8
9 from buildbot.steps import shell 9 from buildbot.steps import shell
10 10
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 '"print(1+2)"'] 212 '"print(1+2)"']
213 self.AddTestStep(shell.ShellCommand, 'Simple Leak Check', cmd, 213 self.AddTestStep(shell.ShellCommand, 'Simple Leak Check', cmd,
214 timeout=300, workdir='build/v8/') 214 timeout=300, workdir='build/v8/')
215 215
216 def AddArchiveBuild(self, mode='dev', show_url=True, 216 def AddArchiveBuild(self, mode='dev', show_url=True,
217 extra_archive_paths=None): 217 extra_archive_paths=None):
218 """Adds a step to the factory to archive a build.""" 218 """Adds a step to the factory to archive a build."""
219 cmd = [self._python, self._v8archive_tool, '--target', self._target] 219 cmd = [self._python, self._v8archive_tool, '--target', self._target]
220 self.AddTestStep(shell.ShellCommand, 'Archiving', cmd, 220 self.AddTestStep(shell.ShellCommand, 'Archiving', cmd,
221 workdir='build/v8') 221 workdir='build/v8')
222
223 def AddMoveExtracted(self):
224 """Adds a step to download and extract a previously archived build."""
225 cmd = ('cp -R sconsbuild/release/* v8/.')
226 self._factory.addStep(shell.ShellCommand,
227 description='Move extracted to bleeding',
228 timeout=600,
229 workdir='build',
230 command=cmd)
OLDNEW
« no previous file with comments | « no previous file | build/scripts/master/factory/v8_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698