在构建大量项目时如何防止错误的 CI 构建失败?

发布于 2024-12-11 04:34:29 字数 411 浏览 0 评论 0原文

如何解决这个不正确的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浮生未歇 2024-12-18 04:34:29

将这些项目放在一个队列中 - 因为它们都写入同一个文件,所以它们不能同时构建。

Put those project in a single queue - as they all write to the same file, they can't build simultaneously.

海螺姑娘 2024-12-18 04:34:29

理想情况下,每个项目都应该有自己的代码副本,因此可以同时构建多个项目。否则,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.

最冷一天 2024-12-18 04:34:29
<PropertyGroup>
    <MSBuildWarningsAsMessages>MSB3101</MSBuildWarningsAsMessages>
    <ProjectGuid>{C27EC026-BEA7-47BB-8422-14EE2F665B4D}</ProjectGuid>
</PropertyGroup>
<PropertyGroup>
    <MSBuildWarningsAsMessages>MSB3101</MSBuildWarningsAsMessages>
    <ProjectGuid>{C27EC026-BEA7-47BB-8422-14EE2F665B4D}</ProjectGuid>
</PropertyGroup>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文