如何在buildbot阶段的瀑布页面上访问Build属性?

时间:2014-03-20 21:10:52

标签: buildbot

如何在buildbot阶段页面内的一个buildbot阶段event.change.id内访问构建属性,如cbuildbot_stages.py等?

-Pratibha

3 个答案:

答案 0 :(得分:2)

Buildbot提供了一种访问这些属性的机制。它在http://docs.buildbot.net/current/manual/cfg-properties.html#using-properties-in-steps

中描述

您需要使用Interpolate类来获取您要查找的值:例如,Interpolate('%(prop:event.change.id)s

请注意介绍部分,其中介绍了人们在开始使用此功能时可能出现的错误。

答案 1 :(得分:0)

此文件cbuildbot_stages.py的内容和位置是什么?

您可以使用buildbot配置文件中的内容覆盖默认的buildbot行为。标准OOP实践。

答案 2 :(得分:0)

我正在使用buildbot来构建chrome os。 cbuildbot_stages.py脚本位于/ chromite / buildbot /目录中。

我想在buildbot阶段访问gerrit change id。