buildbot:buildbot.slave.commands.SVN 与 buildbot.steps.source.SVN
Buildbot 问题:
何时使用以下每个类:buildbot.slave.commands.SVN
和 buildbot.steps.source.SVN
?
我想要用于从 svn 签出项目的类。
Buildbot question:
When to use each of these classes: buildbot.slave.commands.SVN
and buildbot.steps.source.SVN
?
I want the class that is used to check out a project from svn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将
buildbot.slave.*
类视为内部类。您应该传递给
builder.addStep
的是buildbot.steps.source.SVN
的实例。You should consider the
buildbot.slave.*
classes as internal.What you should pass to
builder.addStep
is an instance ofbuildbot.steps.source.SVN
.