验证可交付成果的工具?
我正在寻找一种工具,可以根据应包含的文件列表或清单来验证可交付成果(例如 .tgz、.war/.jar、.zip 文件)。检查可交付成果中应包含的每个文件(根据列表)。
这是持续交付周期中最后验证步骤的一部分。
OSS 解决方案将是理想的选择。还没有找到任何东西,但想在出发并写一份之前检查一下。
I'm looking for a tool that validates deliverable (such as a .tgz, .war/.jar, .zip file) against a list or inventory of files that it should contain. Something that checks for every file that should be in the deliverable (per the list).
This is part of a final validation step in a continuous delivery cycle.
An OSS solution would be ideal. Have not found anything, but want to check before setting off and writing one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 bash 中,您可以执行以下操作:
您不必编写超过几行的 shell 脚本。
In bash you could do something like:
You shouldn't have to write more than a couple lines of a shell script.