-
-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File conflicts when building projects in parallel on Jenkins #164
Comments
I solved this type of problem elsewhere in aeba285 Would anyone care to apply this same retry method to this code? |
Yes, I can do this. |
Great. I expect you'll need to move my utility method to the main assembly. |
How do you feel about moving it to a shared folder and compiling it into each assembly? That's the way I went, probably because I've been working in the MSBuild code base which does that a lot :-) |
I'm not a huge fan of shared files, but it's better than making the class public, so I think it's the right choice here. |
Includes fix for dotnet/Nerdbank.GitVersioning#164
I'm getting errors in CI where the
SetCloudBuildVariables
task is failing to write thejenkins_build_number.txt
, presumably because other projects are writing it at the same time. Should Jenkins.WriteVersionFile be updated to use the same retry logic that was added in aeba285?The text was updated successfully, but these errors were encountered: