eval mail

This commit is contained in:
Maciej Sobkowiak 2021-05-16 23:11:06 +02:00
parent 5189f40f7e
commit 39de53d780

View File

@ -34,6 +34,14 @@ pipeline {
stage('archive-artifacts') {
steps{
archiveArtifacts 'results.txt'
archiveArtifacts 'plot.png'
}
}
stage('send-mail') {
steps{
emailext body: currentBuild.result ?: 'SUCCESS',
subject: 's434784-evaluation',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}