внешний groovy скрипт выдает ошибку: groovy.яз..MissingPropertyException: нет такого свойства: hudson. при использовании в Дженкинсе


В настоящее время я использую "Execute System groovy script" в 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()+"rn"


file<<newDataToAdd

println('print done')

Теперь мне нужно запустить этот же скрипт (я имею в виду ту же функциональность), что и внешний groovy скрипт в Jenkins. Я создал файл 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

Может ли кто-нибудь указать, в чем причина этого? ошибка?

Спасибо!!

1 2

1 ответ:

Я решил эту проблему. По ошибке я пытался выполнить его как groovy script, но я должен был использовать Execute System Groovy script.
Теперь он работает нормально.