我正在使用AccuRev
作为版本控制工具。
我在 Jenkins 中创建了freestyle
项目。
在 Jenkins 中有一种清理工作区的方法,您可以在构建之前或构建之后清理工作区。
首先,安装Worke Cleanup Plugin。
要在构建前清理工作区:在构建环境下,选中显示在构建开始前删除工作区的框。
要在构建后清理工作区:在标题构建后操作下,从添加构建后操作下拉菜单中选择构建完成后删除工作区。
If you want to manually clean it up, for me with my version of jenkins (didn't appear to need an extra plugin installed, but w knows), there is a "worke" link on the left column, click on your project, then on "worke", then a "Wipe out current worke" link appears beneath it on the left hand side column.
Beside above solutions,there is a more“COMMON”way — directly delete the largest e consumer from Linux machine.You can follow the following steps:
Login to Jenkins machine (Putty)
cd 到 Jenkins 安装路径
使用 ls-lart 列出隐藏的文件夹,通常 jenkin 安装放置在.jenkins / 文件夹
[xx ~]$ ls -lart
drwxrwxr-x 12 x 4096 Feb 8 02:08 .jenkins/
列出文件夹空间
Use df -h
以高级别显示磁盘空间
du -sh ./*/
列出当前路径中每个子文件夹的总内存。
du -a /etc/ | sort -n -r | head -n 10
将列出占用 / etc / 中磁盘空间的前 10 个目录
删除旧的构建或其他大型文件夹
通常。/ job / folder 或./ worke / folder 可以是最大的文件夹。请进入内部并根据需要删除(请勿删除整个文件夹)。
rm-rf theFolderToDelete
本站系公益性非盈利分享网址,本文来自用户投稿,不代表边看边学立场,如若转载,请注明出处
评论列表(83条)