jenkins批量复制view中所有job

需要将jenkins中某一个view中的所有job都复制到另外一个view中,一个一个复制有点蛋疼,所以查询了一下资料,使用groovy scripts 来实现这个功能

  • 新建view
  • 打开系统管理 -> 脚本命令行
	import hudson.model.*
	//源view
	def str_view = "ZZ"
	//目标view
	def str_new_view = "ZZ_dev"
	//源job名称(模糊匹配)
	def str_search = "demo"
	//目标job名称(模糊匹配后替换)
	def str_replace = "zz_dev"
	def view = Hudson.instance.getView(str_view)
	//copy all projects of a view
	for(item in view.getItems())
	{
	  //create the new project name
	  newName = item.getName().replace(str_search, str_replace)
	  // copy the job, disable and save it
	  def job
	  try {
	  	//因为第一次导入后报错,所以添加了try-catch 跳过已存在的job
	  	job = Hudson.instance.copy(item, newName)
	  } catch(IllegalArgumentException e) {
	     println(e.toString())
	     println("$newName job is exists")
	     continue
	  } catch(Exception e) {
	    println(e.toString())
	    continue
	  }
	  job.disabled = true
	  job.save() 
	  // update the workspace to avoid having two projects point to the same location
	  AbstractProject project = job
	  def new_workspace = project.getCustomWorkspace().replace(str_search, str_replace)
	  project.setCustomWorkspace(new_workspace)
	  project.save()
	  //add job to view
	  Hudson.instance.getView(str_new_view).add(job)
	  println(" $item.name copied as $newName")
	}

参考链接:

  1. Clone all projects in a View
  2. How to programmatically add a job to a view in hudson
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐