change staging master.cfg to use ShellCommand not CVS b=394963

git-svn-id: svn://10.0.0.236/trunk@237111 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rhelmer%mozilla.com
2007-10-02 23:08:15 +00:00
parent 73a6cbb581
commit 81f3f36b19

View File

@@ -102,13 +102,12 @@ from buildbot.steps.shell import ShellCommand
from buildbot.steps.transfer import FileDownload
tagFactory = factory.BuildFactory()
l10nverifyFactory.addStep(ShellCommand, description='clean checkout',
workdir='.', command=['rm', '-rfv', 'build'],
haltOnFailure=1)
l10nverifyFactory.addStep(ShellCommand, description='checkout', workdir='.',
command=['cvs', '-d', cvsroot, 'co',
'-r', automation_tag,
'-d', 'build', cvsmodule], haltOnFailure=1)
tagFactory.addStep(ShellCommand, description='clean checkout',
workdir='.', command=['rm', '-rfv', 'build'],
haltOnFailure=1)
tagFactory.addStep(ShellCommand, description='checkout', workdir='.',
command=['cvs', '-d', cvsroot, 'co', '-r', automation_tag,
'-d', 'build', cvsmodule], haltOnFailure=1)
tagFactory.addStep(FileDownload, mastersrc="bootstrap.cfg",
slavedest="bootstrap.cfg", workdir="build"),
tagFactory.addStep(ShellCommand, description='clean logs area',