将参数从 Teamcity(属性)传递到命令行
我试图将 teamcity 参数(项目名称)传递到命令行,但命令行没有选择它。从teamcity的角度来看,有什么方法可以做到这一点?
我以前做过,但有些事情发生了变化!
谢谢
I am trying to pass a teamcity parameter (the project name) to a command line, but the command line does not pick it up. From teamcity's side, what is the way to do this?
I had done it before but something changed!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将
%paramater_name%
放入自定义脚本或命令参数字段即可。Just put
%paramater_name%
into Custom script or Command parameters fields.为了将参数传递给脚本,您应该定义
构建配置中的环境或系统参数。参数的名称应该
以
evn.
或system.
开头。参数无这些前缀称为配置参数,它们是
没有传递到构建。有关详细信息,请参阅文档(我假设您使用的是 TeamCity 6.5)。
In order to pass parameter to the script you should define either
environment or system parameter in your build configuration. A name of the parameter should
start with
evn.
orsystem.
. Parameters withoutsuch prefixes are called configuration parameters and they are
not passed to the build. See documentation for details (I assume you are using TeamCity 6.5).