remove email

This commit is contained in:
Samira Ouaaz 2021-11-18 00:51:05 -05:00
parent 899b2c4e20
commit 4bc35d8e50

7
Jenkinsfile vendored
View file

@ -1,5 +1,8 @@
pipeline {
agent none
// Scan for SCM changes at 10-minute intervals
triggers { pollSCM(*/10 * * * *) }
stages {
stage('Build') {
agent {
@ -22,9 +25,7 @@ pipeline {
}
post {
always {
mail to:"ouaazs@algonquincollege.com",
subject:"STATUS FOR PROJECT: ${currentBuild.fullDisplayName}",
body: "RESULT: ${currentBuild.result}"
junit 'test-reports/results.xml'
}
}
}