forked from edureka-git/DevOpsClassCodes
-
Notifications
You must be signed in to change notification settings - Fork 612
/
JenkinsFile1
49 lines (49 loc) · 1.15 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
47
48
49
new commit pipeline{
new chnage for commit tools{
jdk 'myjava'
maven 'mymaven131'
}
//more commits on the file
//commit on github-- new one
agent any
new ctsage added
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'
}
}
}
}