Я хочу добавить шаг сборки с плагином Groovy, чтобы прочитать файл и вызвать сбой сборки в зависимости от содержимого файла.
Как я могу вставить путь к файлу рабочей области в плагин Groovy?
myFileDirectory = // Get workspace filepath here ???
myFileName = "output.log"
myFile = new File(myFileDirectory + myFileName)
lastLine = myFile.readLines().get(myFile.readLines().size().toInteger() - 1)
if (lastLine ==~ /.Fatal Error.*/ ){
println "Fatal error found"
System.exit(1)
} else{
println "nothing to see here"
}