1

我正在使用并行任务来测试和关闭我的服务器。

这是代码:

        <target name="runandtest" description="run the server and test it">
          <parallel  timeout="1380000">
            <sshexec host="XXX.XX.XX.XX" username="XXXXX" password="xxxxxxxxx" trust="true" command='cd test;nohup bin/server > log.txt'/>
            <sequential>
              <sleep seconds="1200"/>
              <!-- run test-->
               <scp file="XXXXXX:XXXXXX@XXX.XX.XX.XX:/home/XXXXX/test/log.txt" todir="/ant/" trust="true" />           
               <mail enableStartTLS="true" mailhost="smtp.gmail.com" mailport="587" user="XXXXXXX" password="XXXXXXX" subject="Run test"  from="XXXXXXXX" tolist="XXXXXXX" files="log.txt" message="blabla"/>
            <!-- FAIL BELOW  -->       
               <sshexec host="XXX.XX.XX.XX" username="XXXX" password="XXXXX" trust="true" command="kill $(ps aux | grep '[s]erver' | awk '{print $2}')"/>
            </sequential>
          </parallel>
        </target>

在我写评论的地方构建失败。

这确实很合乎逻辑,因为一旦我的测试完成,我只需在同一台服务器上 ssh 并终止第一个并行任务的进程。

但是在我的运行-测试-关机过程中,这是一个完全正常的行为,所以我想知道是否有可能捕获这个 BUILD FAIL 错误,以便我的 ant 项目可以继续。

谢谢你。

4

1 回答 1

1

Ant sshexec任务有一个failonerror默认为 true 的属性 - 也许您可以为您的关闭目标将其设置为 false。

于 2013-02-28T02:03:27.453 回答