等待另一个 ANT 构建/任务完成
我想让 ANT 进程等待另一个构建或任务完成。
情况是:我同时执行几个 ANT 构建。在这些构建中,有一些测试应用程序的任务。不幸的是,只能同时运行一个 flexunit 任务,因为它使用网络套接字与 AIR 应用程序进行通信。
构建进程应等待其他构建进程的任务结束,然后再开始其任务。
如何实现这一目标?
谢谢你的任何提示,
拉法尔
I would like to make ANT process wait for another build or task to finish.
The situation is: I execute a few ANT builds simultaneously. In these builds there are tasks to test the apps. Unfortunately, only one flexunit task can be run at the same time, because it uses net socket to communicate with the AIR app.
The build process should wait for the end of the tasks from other build processes before starting its task.
How to achieve that?
Thank you for any hints,
Rafal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用<等待>任务与您选择的同步。之后创建的“IGotTheResourceSoYouCantHaveIt”文件。并在我完成后删除。
我总是使用在
详细信息:
Use the <waitfor> task with your choice of synchronization.
I always use an "IGotTheResourceSoYouCantHaveIt" file that gets created after <waitfor> and deleted when I'm done with it.
Details: