jenkinsfile

2021/12/7 6:22:42

本文主要是介绍jenkinsfile,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

pipeline {
agent any

options {
timestamps() //日志会有时间
skipDefaultCheckout() // 删除隐式checkout scm语句
disableConcurrentBuilds() // 禁止并行
timeout(time: 1, unit: 'HOURS') // 超时时间
}

stages {
stage('GetCode') {
steps {
timeout(time:5, unit:"MINUTES"){
script{
println("get the code")
}
}

}
}

stage('Build') {
steps {
timeout(time:20, unit:"MINUTES"){
script{
println("build package")
}

}

}
}

stage('CodeScan') {
steps {
timeout(time:30, unit:"MINUTES"){
script{
println("get the code")
}
}

}
}
}

post {
always {
script {
println("always");
}
}
success {
script {
currentBuild.description += "success!"
}
}
failure {
script {
currentBuild.description += "fail!"
}
}
aborted {
script {
currentBuild.description += "abort!"
}
}
}
}

 



这篇关于jenkinsfile的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程