I'm having an error on a build jenkins build job that can be resolved by doing a workspace wipe out before build.
As SCM we're using subversion with check-out strategy: always check out a fresh copy. I assumed that this strategy was the equivalent of:
- wipe out workspace
- svn checkout
Apparently I'm overlooking something cause my problem is only resolved when I manually wipe out the workspace. Can anyone explain this why "fresh copy check out" doesn't do the job?
Extra info:
- my svn checkout out is to "." inside the workspace
- the build project is a .NET solution
- the build error: CSC : error CS0016: Could not write to output file. It's about an intermediate output file.
- I know that the workspace wipe out is a workaround but nevertheless I want to understand why manual wipe out does the job and fresh svn check out doesn't.