27
Nov
post processing for failures in jenkins declarative pipeline
pipeline {
agent none
stages {
stage("Hello") {
steps {
echo "hello"
// need to use script block to assign value
script {
currentBuild.result = "UNSTABLE"
}
}
}
}
post {
always {
echo "I ALWAYS run first"
}
unstable {
echo "UNSTABLE runs after ALWAYS"
}
}
}
0 comments