巡航控制 .net 中的 Mercurial 的最后版本号
我们使用 Cruise Control .net 和 Mercurial 版本控制来进行持续集成。 我想在 ccnet 仪表板中获取最新的内部版本号。
在使用 toroise svn 作为版本控制时,我们添加了
来获取最新的内部版本号。那么,在使用 Mercurial hg 时,应该添加什么标签才能获得最新的内部版本号?谁能帮我解决这个问题。
We are using cruise control .net with mercurial version control for continuous integration.
I want to get the latest build number in the ccnet dashboard.
While using toroise svn as version control we added <labeller type="lastChangeLabeller"/>
to get the latest build number. So while using mercurial hg, what tag should be added in order to get the latest build number? Can anyone help me on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道它在巡航控制中是什么样子(人们仍然使用巡航控制?!),但是在 Mercurial 中您可以使用:
hg log -r 。 --template '{node}-{latesttag}-{latesttagdistance}'
获取所需的字符串。您可以执行它并在 CC 或构建脚本中获取值。I don't know what it looks like in cruise control (people still use cruise control?!), but from mercurial you can use:
hg log -r . --template '{node}-{latesttag}-{latesttagdistance}'
to get the string you want. You can exec that and get the value either in CC or in your build scripts.