在Jenkinsfile中,class属性值可以通过以下方式打印出来:
pipeline {
agent any
stages {
stage('Print Class') {
steps {
script {
def jenkinsfileClass = this.getClass().getSimpleName()
println "Jenkinsfile class: ${jenkinsfileClass}"
}
}
}
}
}
上述代码中,通过this.getClass().getSimpleName()获取Jenkinsfile的class属性值,并使用println语句将其打印到控制台。
pipeline {
agent any
stages {
stage('Print Class') {
steps {
script {
def jenkinsfileClass = this.getClass().getSimpleName()
echo "Jenkinsfile class: ${jenkinsfileClass}"
}
}
}
}
}
上述代码中,通过this.getClass().getSimpleName()获取Jenkinsfile的class属性值,并使用echo语句将其打印到控制台。
请注意,以上示例中的代码是在Jenkins Pipeline中使用的Groovy语法。在实际使用中,可以根据需要进行适当的修改和调整。
领取专属 10元无门槛券
手把手带您无忧上云