狂神Java全棧
前支持的狀態(tài)有SUCCESS、UNSTABLE、FAILURE、NOT_BUILT、ABORTED
等。
pipeline {
?agent any
?triggers {
? ?upstream(upstreamProjects: 'env', threshold: hudson.model.Result.SUCCESS) ?//當(dāng)env構(gòu)建成功時構(gòu)建這個流水線
?}
?stages {
? ?stage('Example') {
? ? ?steps {
? ? ? ?echo 'Hello World'
? ? ?}
? ?}
?}}
?
標(biāo)簽: