remove email
This commit is contained in:
parent
899b2c4e20
commit
4bc35d8e50
1 changed files with 4 additions and 3 deletions
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
@ -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}"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue