使用 omake 进行构建后测试
有什么方法可以将构建后命令添加到 omakefile 中吗?我希望它在每次构建成功时自动运行单元测试,但不确定执行此操作的最佳方法。
Is there any way to add a post build command to an omakefile? I want it to automatically run unit tests everytime a build is successful, but am not sure of the best way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将命令添加到 .DEFAULT 目标。例如:
当在没有任何特定目标的情况下调用时,Omake 将构建所有默认目标,然后运行关联的命令。
You can add commands to the .DEFAULT target. For example:
When invoked without any particular target, Omake will build all default targets, then run associated commands.
我认为您可以使用 .BUILD_SUCCESS 和 .BUILD_FAILURE 目标来实现此目的。
请参阅此处了解详细信息。
I think you can use .BUILD_SUCCESS and .BUILD_FAILURE targets for that purpose.
See details here.