I can believe fly.

Thursday, May 6, 2010

关于NANT集成获取cc.net,hudson的构建号

关于NANT集成获取cc.net,hudson的构建号

1. nant获取cc.net的构建号
<if test="${property::exists('CCNetLabel')}">
<property name="build_ver" value="${CCNetLabel}"/>
</if>

2. nant获取hudson的构建号
<if test="${environment::variable-exists('BUILD_NUMBER')}">
<property name="build_ver" value="${environment::get-variable('BUILD_NUMBER')}"/>
</if>
备注:其中environment::variable-exists用于检查环境变量是否存在;
environment::get-variable用于获取环境变量值,此两个函数需要基于NANT的0.91.3774.0版本上方可使用







No comments: