Update Jenkinsfile

This commit is contained in:
khalilalturk 2020-03-15 22:02:36 -04:00 committed by GitHub
parent 30d11a6973
commit 5782995949
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Jenkinsfile vendored
View file

@ -29,4 +29,14 @@ pipeline {
}
}
}
post{
success{
slackSend(color: '#00FF00' ,message: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
failure{
slackSend(color: '#FF0000' ,message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
}
}