代码拉取完成,页面将自动刷新
#!groovy
pipeline {
agent { node { label "build01"
}
}
stages{
stage("GetCode") {
steps{
timeout(time:5, unit: "MINUTES"){
script{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: '3b3ce2a3-af9c-46bc-8b2a-81a9aef7f250', url: 'https://gitee.com/john5/jeesns.git']]])
}
}
}
}
stage("Build") {
steps{
timeout(time:5, unit: "MINUTES"){
script{
println('应用打包')
}
}
}
}
stage("CodeScan") {
steps{
timeout(time:5, unit: "MINUTES"){
script{
println('代码扫描')
}
}
}
}
}
post {
always {
script{
println("always")
}
}
success {
script {
currentBuild.description = "\n 构建成功!"
}
}
failure {
script {
currentBuild.description = "\n 构建失败!"
}
}
aborted {
script {
currentBuild.description = "\n 构建取消!"
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。