我在config.xml
文件中有以下代码:
<schedule interval = "300">
<ant anthome="/usr/share/ant"
antworkingdir="${GitDir}"
uselogger="true"
usedebug="true"/>
</schedule>
当我通过它执行构建时,我只是得到输出,就像我一直在命令行中键入ant
一样。我需要能够从巡航控制执行以下命令:
ant debug
如果这有什么不同,我需要能够构建安卓应用程序。如何做到这一点?提前谢谢你。
您已经在配置中使用了正确的属性.xml 使用 loglevel debug
启动 ant 脚本
...
usedebug="true"
...
相当于ant -debug ...
有关详细信息,请参阅 http://cruisecontrol.sourceforge.net/main/configxml.html#ant。