up vote 4 down vote favorite
share [g+] share [fb]

I want to have a way to teach hudson to delete the complete workspace before doing a checkout & build. Is there a plugin which enables that?

link|improve this question

40% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Currently, each SCM plugin provides workspace cleanup functionality. Soon, core Hudson will have this capability, and the SCM plugins will migrate the setting to that core feature: issue 3966

link|improve this answer
great, thats what I meant. – Mauli Jul 16 '09 at 20:12
feedback

Under Source Code Management, expand the advanced properties and un-check "Use Update" (this option is present for me for CVS, not sure about all other SCM tools). This option controls if Hudson uses an "update" command to simply grab changed files from SCM, or if it checks out a new/clean copy from source control.

link|improve this answer
It's present for all the SCM tools – pugmarx May 19 '09 at 13:56
And, in addition, do a 'clean' (like: 'maven clean') to remove the previous build artifacts as well (in maven: the target folder) – Andreas_D May 19 '09 at 14:16
does that actually deletes the complete workspace? maven clean is not enough, I want to delete the local repository as well. – Mauli May 19 '09 at 14:22
You mean you want to delete the local Maven repository? If so, I think that falls outside of the scope of what Hudson will do for you – matt b May 19 '09 at 14:36
I configured a private maven repository, only used by this job, so it actually is located within the workspace. – Mauli May 19 '09 at 18:14
feedback

Uncheck Use Update under SCM options AND use call maven's clean phase in your command.

link|improve this answer
feedback

I haven't used them yet, but AFAIK there are hudson-plugins available which allow batch scripts to run as pre- and post-build steps which could delete the directory. Check out: Manage Hudson -> Manage Plugins -> Available

link|improve this answer
feedback

The Subversion plugin for Hudson now has a switch to "Emulate Checkout" -- it removes unversioned files before reverting and updating.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.