-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
49 lines (44 loc) · 1.28 KB
/
Jenkinsfile
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
43
44
45
46
47
48
49
pipeline {
agent any
stages {
stage('Init') {
steps {
script {
echo 'Initializing...'
sh 'chmod +x ./mvnw'
sh './mvnw clean'
}
}
}
stage('Build') {
steps {
script {
echo 'Building...'
sh './mvnw install -DskipTests'
}
}
}
stage('Test') {
steps {
script {
echo 'Testing...'
sh './mvnw test -Dtest=*ImplTest'
}
}
}
}
post {
success {
echo 'CI/CD pipeline executed successfully!'
emailext subject: "CI/CD Pipeline Successful: ${currentBuild.fullDisplayName}",
body: "The CI/CD pipeline for ${currentBuild.fullDisplayName} passed successfully.",
to: <EMAIL>
}
failure {
echo 'CI/CD pipeline failed!'
emailext subject: "CI/CD Pipeline Failed: ${currentBuild.fullDisplayName}",
body: "The CI/CD pipeline for ${currentBuild.fullDisplayName} failed.",
to: <EMAIL>
}
}
}