Teamcity - 参数化构建
有什么方法可以在团队城市中配置参数化构建吗?
在实际触发构建之前,我需要传递一些参数。我的项目有多个版本,每次构建触发时我都需要手动传递发布版本(这不是 CI 构建),
然后我将在我的构建中相应地使用此发布版本。
Is there any way to configure parametrized builds in team city?
I need to pass a few parameters before actually triggering the build. I have multiple releases for a project and I need to pass the release version manually each time my build fires (It's not an CI Build)
I would then use this release version in my build accordingly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实不想使用 TeamCity 来管理版本号,那么一种选择是创建一个
BuildVersion
(或任何您想要的名称)为您的配置构建参数。然后,您需要在每次触发构建时手动定义版本;您可以通过单击自定义构建按钮并根据参数输入版本来完成此操作随后的对话框。
然后,您可以在脚本中使用
BuildVersion
属性。然而,这并不能阻止人们在没有定义该参数的情况下执行构建(可能会导致一些混乱)。
If you really don't want to use TeamCity to manage your version numbers then one option is to create a
BuildVersion
(or whatever you want to call it) build parameter for your configuration.You then need to manually define the version each time you trigger a build; you can do this by clicking the custom build button and entering the version against the parameter in the subsequent dialog.
You can then use the
BuildVersion
property in your script.This, however, does not stop people from executing the build without defining that parameter though (may cause some mayhem).