forked from edureka-git/DevOpsClassCodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
57 lines (55 loc) · 1.46 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
50
51
52
53
54
55
56
57
pipeline{
tools{
jdk 'myjava'
maven 'mymaven'
}
agent none
stages{
stage('Compile'){
agent any
steps{
sh 'mvn compile'
}
}
stage('CodeReview'){
agent any
steps{
sh 'mvn pmd:pmd'
}
post{
always{
pmd pattern: 'target/pmd.xml'
}
}
}
stage('UnitTest'){
agent {label 'slave_win'}
steps{
git 'https://github.com/devops-trainer/DevOpsClassCodes.git'
bat 'mvn test'
}
post{
always{
junit 'target/surefire-reports/*.xml'
}
}
}
stage('MetricCheck'){
agent any
steps{
sh 'mvn cobertura:cobertura -Dcobertura.report.format=xml'
}
post{
always{
cobertura coberturaReportFile: 'target/site/cobertura/coverage.xml'
}
}
}
stage('Package'){
agent any
steps{
sh 'mvn package'
}
}
}
}