Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 17:43:17 -04:00 committed by GitHub
parent e1b0511492
commit e4fc61e2ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
Jenkinsfile vendored
View file

@ -8,21 +8,11 @@ pipeline {
}
}
post {
always {
echo 'One way or another, I have finished'
deleteDir() /* clean up our workspace */
}
success {
echo 'I succeeeded!'
}
unstable {
echo 'I am unstable :/'
}
failure {
echo 'I failed :('
}
changed {
echo 'Things were different before...'
}
mail to: 'firassawan@icloud.com',
subject: "Succeeded Pipeline: ${currentBuild.fullDisplayName}",
body: "Congrats ${env.BUILD_URL}"
}
}
}