Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
add svn info step
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Sep 21, 2010
1 parent f0df00a commit 8c1828a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,15 @@ class LastChange(shell.ShellCommand):
return line.split()[0][1:]
return None


class SVNInfo(shell.ShellCommand):

command = ['svn', 'info']
name = 'svn-info'
description = ['svn info']
descriptionDone = ['svn info']


class Test(shell.Test):

started = None
Expand Down Expand Up @@ -394,6 +403,8 @@ def ztk_dev_builder(name, slavename, platform, locks):
lc.url_template = 'http://zope3.pov.lt/trac/log/zopetoolkit?rev=%s'
f.addStep(lc)

f.addStep(SVNInfo())

#f.addStep(shell.ShellCommand(
# command=["/usr/bin/virtualenv", "--distribute", "-p", python, "--no-site-packages", "sandbox"],
# haltOnFailure=True,
Expand Down Expand Up @@ -481,6 +492,8 @@ def ztk_10_builder(name, slavename, platform, locks):
lc.url_template = 'http://zope3.pov.lt/trac/log/zopetoolkit?rev=%s'
f.addStep(lc)

f.addStep(SVNInfo())

#f.addStep(shell.ShellCommand(
# command=["/usr/bin/virtualenv", "--distribute", "-p", python, "--no-site-packages", "sandbox"],
# haltOnFailure=True,
Expand Down Expand Up @@ -565,6 +578,8 @@ def zc_buildout_dev_builder(name, slavename, platform, locks):
lc.url_template = 'http://zope3.pov.lt/trac/log/zc.buildout?rev=%s'
f.addStep(lc)

f.addStep(SVNInfo())

#f.addStep(shell.ShellCommand(
# command=["/usr/bin/virtualenv", "--distribute", "-p", python, "--no-site-packages", "sandbox"],
# haltOnFailure=True,
Expand Down Expand Up @@ -644,6 +659,8 @@ def bb_builder(name, slavename, platform, locks):
lc.url_template = 'http://zope3.pov.lt/trac/log/bluebream?rev=%s'
f.addStep(lc)

f.addStep(SVNInfo())

#f.addStep(shell.ShellCommand(
# command=["/usr/bin/virtualenv", "--distribute", "-p", python, "--no-site-packages", "sandbox"],
# haltOnFailure=True,
Expand Down Expand Up @@ -715,6 +732,8 @@ def ZODB_dev_builder(name, slavename, platform, locks):
lc.url_template = 'http://zope3.pov.lt/trac/log/ZODB?rev=%s'
f.addStep(lc)

f.addStep(SVNInfo())

#f.addStep(shell.ShellCommand(
# command=["/usr/bin/virtualenv", "--distribute", "-p", python, "--no-site-packages", "sandbox"],
# haltOnFailure=True,
Expand Down

0 comments on commit 8c1828a

Please sign in to comment.