From 81f3f36b19db332ea940e8d443f403bf9babda0f Mon Sep 17 00:00:00 2001 From: "rhelmer%mozilla.com" Date: Tue, 2 Oct 2007 23:08:15 +0000 Subject: [PATCH] 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 --- .../buildbot-configs/automation/staging/master.cfg | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/mozilla/tools/buildbot-configs/automation/staging/master.cfg b/mozilla/tools/buildbot-configs/automation/staging/master.cfg index 363f7abf619..356809556f5 100644 --- a/mozilla/tools/buildbot-configs/automation/staging/master.cfg +++ b/mozilla/tools/buildbot-configs/automation/staging/master.cfg @@ -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',