在构建大量项目时如何防止错误的 CI 构建失败?
如何解决这个不正确的 CI 构建失败问题? c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (1360,9):警告 MSB3101:无法写入状态文件“obj\x86\Debug\ResolveAssemblyReference.cache”。该进程无法访问文件“C:\Servers\CruiseControl.NET\Builds\WheelMUDSharp\src\Actions\obj\x86\Debug\ResolveAssemblyReference.cache”,因为它正在被另一个进程使用。
170 个 DotNetNuke 模块全部依赖于两个模块。当两个依赖项发生变化并且所有项目都重建时,我们会遇到像上面这样的错误失败。我们怎样才能避免这些失败呢?
How do I fix this incorrect CI build failure? c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (1360,9): warning MSB3101: Could not write state file "obj\x86\Debug\ResolveAssemblyReference.cache". The process cannot access the file 'C:\Servers\CruiseControl.NET\Builds\WheelMUDSharp\src\Actions\obj\x86\Debug\ResolveAssemblyReference.cache' because it is being used by another process.
We have around 170 DotNetNuke modules that all depend on two modules. When the two dependencies change and all projects rebuild we get incorrect failures like the one above. How can we stop from getting these failures?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将这些项目放在一个队列中 - 因为它们都写入同一个文件,所以它们不能同时构建。
Put those project in a single queue - as they all write to the same file, they can't build simultaneously.
理想情况下,每个项目都应该有自己的代码副本,因此可以同时构建多个项目。否则,skolima 对单个队列的建议是可行的方法。
Ideally, each project should have its own copy of the code, so multiple projects can build at the same time. Otherwise, skolima's recommendation on a single queue is the way to go.