Skip to content

Commit

Permalink
修复构建失败问题
Browse files Browse the repository at this point in the history
[test] 构建时间远大于预期的3分钟,调整构建脚本
WHERE : test/tools//build_run.xml
更新脚本中关于报告的等待时间单位为分钟
  • Loading branch information
bellcliff committed Feb 1, 2012
1 parent 3168ac0 commit e29928a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/tools/build_run.xml
Expand Up @@ -41,16 +41,16 @@
<get src="http://${serverip}/addTask?proj=${git.user}.${git.project}&amp;release=true" dest="/tmp/${git.user}_${git.project}.php" />
</target>
<target name="getreport" depends="execute">
<waitfor maxwait="600" maxwaitunit="second">
<waitfor maxwait="40" maxwaitunit="minute">
<available file="${report.file}" />
</waitfor>

<!-- junit report and mail -->
<!-- junit report and mail
<antcall target="mail" />
<!-- junit report and mail end -->
junit report and mail end -->
</target>
<target name="getreport_release" depends="execute_release">
<waitfor maxwait="1000" maxwaitunit="second">
<waitfor maxwait="40" maxwaitunit="minute">
<available file="${report.file}" />
</waitfor>

Expand Down

0 comments on commit e29928a

Please sign in to comment.