pipeline { agent any options { skipStagesAfterUnstable() } stages { stage('Build') { sh 'echo "Hello!"' } } }