forked from Sonal0409/DevOpsCodeDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JenkinsFile1
46 lines (46 loc) · 1.05 KB
/
JenkinsFile1
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
trigger inpipeline{
tools{
jdk 'myjava'
maven 'mymaven131'
}
agent any
stages{
stage('Checkout on git'){
agent any
steps{
git 'https://github.com/devops-trainer/DevOpsClassCodes.git'
}
}
stage('Compile'){
agent any
steps{
sh 'mvn compile'
}
}
stage('CodeReview'){
agent any
steps{
sh 'mvn pmd:pmd'
}
}
stage('UnitTest'){
agent {label 'win_slave'}
steps{
git 'https://github.com/devops-trainer/DevOpsClassCodes.git'
bat 'mvn test'
}
}
stage('MetricCheck'){
agent any
steps{
sh 'mvn cobertura:cobertura -Dcobertura.report.format=xml'
}
}
stage('Package'){
agent{label 'win_slave'}
steps{
bat 'mvn package'
}
}
}
}