forked from ZYwriter/Jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
42 lines (41 loc) · 1.29 KB
/
Jenkinsfile
File metadata and controls
42 lines (41 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
pipeline {
agent any
stages {
stage('Build') {
steps {
sh '''mvn -v
echo something'''
}
}
stage('Test') {
steps {
emailext(subject: '$DEFAULT_SUBJECT',
recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']],
body: '$DEFAULT_CONTENT', replyTo: '$DEFAULT_REPLYTO',
postsendScript: '$DEFAULT_POSTSEND_SCRIPT',
presendScript: '$DEFAULT_RECIPIENTS',
to: '$DEFAULT_RECIPIENTS')
}
}
}
post {
success {
emailext (
subject: "${env.JOB_NAME} - Build# ${env.BUILD_NUMBER} - Successful!",
to: '$DEFAULT_RECIPIENTS',
recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']],
body: '',
attachLog: true
)
}
failure {
emailext (
subject: "${env.JOB_NAME} - Build# ${env.BUILD_NUMBER} - Successful!",
to: '$DEFAULT_RECIPIENTS',
recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider']],
body: '',
attachLog: true
)
}
}
}