Bài chỉ đơn giản là chúng khai báo status và stop stage nếu status vi phạm
node {
stage('Build'){
echo "setting current build to unstable"
currentBuild.result = "UNSTABLE"
}
if(currentBuild.result != "UNSTABLE"){
stage('Deploy'){
echo "deploy running"
}
}
}