【发布时间】:2015-11-24 12:25:19
【问题描述】:
我目前在 Jenkins 中使用“执行系统 groovy 脚本”。以下代码是我在 Jenkins 内部的编辑器框中编写的。
import hudson.model.*
import groovy.json.JsonBuilder
import groovy.json.JsonSlurper
// Get the list of all jobs and print them
activeJobs = hudson.model.Hudson.instance.items.findAll{job -> job.isBuildable()}
//activeJobs.each{run -> println(run.name)}
println ('total number of jobs :'+ activeJobs.size())
// find failed runs
failedRuns = activeJobs.findAll{job -> job.lastBuild != null && job.lastBuild.result == hudson.model.Result.FAILURE}
//failedRuns.each{run -> println(run.name)}
println ('total number of jobs :'+ failedRuns.size())
// find successful runs
successfulRuns = activeJobs.findAll{job -> job.lastBuild != null && job.lastBuild.result == hudson.model.Result.SUCCESS}
//successfulRuns.each{run -> println(run.name)}
println ('total number of jobs :'+ successfulRuns.size())
//get current date
Date date = new Date(System.currentTimeMillis())
String formattedDate = date.format('yyyy.MM.dd')
//writing to JSON Object
def directory = "D:\\Programs\\Jenkins\\jobs\\Groovy-Project\\workspace\\History\\"
def fileName = "build_job_data"
def extension = ".csv"
def filePath = directory+fileName+extension
File file = new File(filePath)
//check if the file exists
if(!file.exists()){
println("File doesn't exists. Creating the file ..");
}
else{
println("File already exists");
//reading the file
String fileContents = new File(filePath).text
int flag = 0;
if(fileContents.contains(formattedDate)){
println("Already deployed today at least once! Deleting old values and writing the new one..")
flag = 1;
}
def result = []
String textToWrite = "";
int count = 0;
result = fileContents.split('\n')
if(flag==1){
for(int i = 0; i<result.size();i++){
if(result[i].contains(formattedDate)){
println(result[i])
}
else{
textToWrite = textToWrite + '\n' + result[i]
}
}
}
else
{
for(int i = 0; i<result.size();i++){
textToWrite = textToWrite+ '\n' + result[i]
}
}
//make a backup of old record
def newFile = directory+fileName+"_bkp_"+new Date(System.currentTimeMillis()).format('yyyy-MM-dd_hh_mm_ss') + extension
println("creating back up file At :: " + newFile)
File bkpfile = new File(newFile)
bkpfile<<fileContents
println("file creation done")
//update the current history file
file.delete()
file = new File(filePath)
file<<textToWrite
file<<'\n'
}
def newDataToAdd = formattedDate+","+activeJobs.size()+","+failedRuns.size()+","+successfulRuns.size()+"\r\n"
file<<newDataToAdd
println('print done')
现在,我需要在 Jenkins 中运行相同的脚本(我的意思是相同的功能)作为外部 groovy 脚本。我使用上面的代码创建了一个 groovy 文件,并将该 groovy 文件添加到作业工作区中。但是,在运行作业时,出现了这个错误:
Caught: groovy.lang.MissingPropertyException: No such property: hudson for class: TestClass
groovy.lang.MissingPropertyException: No such property: hudson for class: TestClass
at TestClass.run(TestClass.groovy:7)
Build step 'Execute Groovy script' marked build as failure
谁能指出这个错误的原因是什么?
谢谢!!
【问题讨论】:
标签: groovy jenkins jenkins-plugins