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