Yes - you can do this in your own Jenkinsfile or job description. In a Pipeline build (declarative or procedural), use deleteDir() : https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#-deletedir-%20recursively%20delete%20the%20current%20directory%20from%20the%20workspace
In a old-school build, use the Workspace Cleanup Plugin: https://plugins.jenkins.io/ws-cleanup Both can be used to clean the workspace before AND after a build. ----- Original Message ----- From: "Dominik Psenner" <dpsen...@gmail.com> To: builds@apache.org Sent: Friday, July 20, 2018 3:05:27 PM Subject: Re: Jenkins build hosts filling up...needs everyone's help! Would there be ways to automate a rm -rf of a build workspace when the build has completed? Doing so would make the problem disappear. Surely builds take a little more time and disk, network and cpu usage will grow. But builds start from a pristine workspace which is desirable from my pov and the full disk problem disappears too so long a single job does not use more than the available on a build machine. On Fri, 20 Jul 2018, 19:52 Dan Kirkwood, <dang...@apache.org> wrote: > Thanks, Mike.. > > I've added some better cleanup, I hope, using trap -- so hopefully will > lessen our contribution to the problem. > > -dan > > On 2018/07/20 16:43:31, Mike Jumper <mjum...@apache.org> wrote: > > On Thu, Jul 19, 2018, 10:36 Dan Kirkwood <dang...@apache.org> wrote: > > > > > TrafficControl uses docker-compose to build each component, so the > disk > > > space used is within docker's space -- not the workspace. We do > attempt > > > to clean up after each build, but would be happy to get advice to > improve > > > how we're doing it. Are there best practices others use? > > > > > > > We've been using Docker for Guacamole's Jenkins builds, as well, > > autogenerating a Dockerfile which performs the actual build within a > > pristine environment. > > > > Not sure how different things would need to be with docker-compose, but > we > > use a combination of the "trap" command (to ensure cleanup happens > > regardless of build result) and the "--no-cache" and "--rm" flags: > > > > # Remove image regardless of build result > > export TAG="guac-${BUILD_TAG}" > > trap "docker rmi --force $TAG || true" EXIT > > > > # Perform build > > docker build --no-cache=true --rm --tag "$TAG" . > > > > - Mike > > >