Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Google 并查看了文档,但找不到答案。
我想在成功构建后触发另一个构建或 rake 脚本来清理文件。我目前使用 Rake 进行构建并传递%teamcity.build.branch%给它。
%teamcity.build.branch%
我想知道是否可以将成功构建的相同分支名称传递给触发的构建或脚本。然后我可以用它来做一些整理。
谢谢
除了完成构建触发器之外,您还需要添加快照依赖项,并启用“在同一代理上运行构建”选项。这样,清理将在每次构建后在同一个代理上运行。
然后,您将能够使用依赖项参数引用原始构建的分支名称:
%dep.<original_bt_id>.teamcity.build.branch%