[Buildbot-commits] buildbot/buildbot/process step.py,1.102,1.103
Brian Warner
warner at users.sourceforge.net
Sat Sep 9 06:20:52 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/process
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12175/buildbot/process
Modified Files:
step.py
Log Message:
[project @ split user-visible BuildSteps out to separate buildbot/steps/* files]
Original author: warner at lothar.com
Date: 2006-09-08 20:22:35
Index: step.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/step.py,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -d -r1.102 -r1.103
--- step.py 6 Sep 2006 00:41:55 -0000 1.102
+++ step.py 9 Sep 2006 06:20:50 -0000 1.103
@@ -1,8 +1,5 @@
# -*- test-case-name: buildbot.test.test_steps -*-
-import types, re, warnings
-from email.Utils import formatdate
-
from twisted.internet import reactor, defer, error
from twisted.protocols import basic
from twisted.spread import pb
@@ -13,7 +10,6 @@
from buildbot import interfaces
from buildbot.twcompat import implements, providedBy
[...1227 lines suppressed...]
- OFFprogressMetrics = ('output',)
- # things to track: number of files compiled, number of directories
- # traversed (assuming 'make' is being used)
+# legacy compatibility
- def createSummary(self, cmd):
- # TODO: grep for the characteristic GCC warning/error lines and
- # assemble them into a pair of buffers
- pass
+from buildbot.steps.shell import ShellCommand, WithProperties, TreeSize, Configure, Compile, Test
+from buildbot.steps.source import CVS, SVN, Darcs, Git, Arch, Bazaar, Mercurial, P4, P4Sync
+from buildbot.steps.dummy import Dummy, FailingDummy, RemoteDummy
-class Test(ShellCommand):
- name = "test"
- warnOnFailure = 1
- description = ["testing"]
- descriptionDone = ["test"]
- command = ["make", "test"]
More information about the Commits
mailing list