-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
48 lines (47 loc) · 1.27 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
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git 'https://github.com/vrun545/Testing_Project.git'
}
}
stage('Build') {
steps {
bat 'mvn clean package'
}
}
stage('Test') {
steps {
bat 'mvn clean test'
}
post {
success {
publishHTML([
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: false,
reportDir: 'target/surefire-reports/',
reportFiles: 'emailable-report.html',
reportName: 'HTML Report',
reportTitles: '',
useWrapperFileDirectly: true
])
}
failure {
echo 'Ignoring failed test cases and proceeding with the pipeline'
}
}
}
stage('Deployment') {
steps {
echo 'Deployment is done'
}
}
stage('Clean up') {
steps {
echo 'Clean up is done'
}
}
}
}