Advertisement
GrueMaster

Untitled

Jul 3rd, 2019
787
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.19 KB | None | 0 0
  1. pipeline{
  2.     agent ...
  3.     stages{
  4.         // some code
  5.     }
  6.     post {
  7.         always {
  8.             emailext body: "Test results:  ${currentBuild.result}", subject: 'Test results', to: 'me@mydomain.com'
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement