我是詹金斯的初学者,我需要一些帮助。我有以下代码
但是当我建立工作时,结果是一个错误: groovy.lang.MissingPropertyException:无此类属性:为类构建
我需要将我的工作结果返回到管道中。我怎样才能做到这一点? 预先感谢
import hudson.model.*
def buildNumber = build.properties.environment.BUILD_NUMBER
println buildNumber
File file = new File("./SRC");
if(file.exists()){
if (file.isDirectory()) {
currentBuild.result = 'SUCCESS'
return
}
}