-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge-request-full.groovy
103 lines (93 loc) · 3.74 KB
/
merge-request-full.groovy
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
pipeline {
agent any
tools {
maven 'Maven'
jdk 'JDK8'
}
options{
gitlabBuilds(builds: ["Preparation","Build", "Code coverage"])
gitLabConnection('gitlab')
}
stages {
stage('Preparation') {
steps {
gitlabCommitStatus(name: 'Preparation') {
script {
try {
cleanWs()
echo " Merge request: ${gitlabSourceBranch} => ${gitlabTargetBranch} "
git(
url: 'CHANGE_GIT_URL',
credentialsId: 'CHANGE_GITLAB_CREDENTIALS',
branch: '${gitlabTargetBranch}'
)
sh "git merge --ff origin/${gitlabSourceBranch}"
sh "git reset --hard"
sh "git checkout -f origin/${gitlabSourceBranch}"
} catch(error) {
currentBuild.result = 'FAILURE'
throw error
}
}
}
}
}
stage('Build') {
steps {
gitlabCommitStatus(name: 'Build') {
timeout(30) {
ansiColor('xterm') {
script {
try {
sh "mvn clean install -Pcode-coverage findbugs:findbugs"
}catch(error){
currentBuild.result = 'FAILURE'
throw error
}
}
}
}
}
}
}
stage('Code coverage') {
steps {
script {
jacoco(
execPattern: '**/target/coverage-reports/*.exec',
//classPattern: 'target/classes',
//sourcePattern: 'src/main/java',
exclusionPattern: 'src/test*',
minimumBranchCoverage : '0', maximumBranchCoverage: '0',
minimumClassCoverage : '0', maximumClassCoverage: '0',
minimumComplexityCoverage : '0', maximumComplexityCoverage: '0',
minimumInstructionCoverage: '0', maximumInstructionCoverage: '0',
minimumLineCoverage : '10', maximumLineCoverage: '20',
minimumMethodCoverage : '0', maximumMethodCoverage: '0',
buildOverBuild: false,
changeBuildStatus: true,
)
if(currentBuild.result == 'FAILURE' || currentBuild.result == 'UNSTABLE') {
updateGitlabCommitStatus name: 'Code coverage', state: 'failed'
} else{
updateGitlabCommitStatus name: 'Code coverage', state: 'success'
}
}
}
}
stage('FindBugs') {
steps {
findbugs canComputeNew: false, defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '**/CHANGE_YOUR_PACKAGE/**', pattern: '**/target/findbugsXml.xml', unHealthy: ''
}
}
}
post {
always {
script {
echo "Post stage"
junit '**/target/*-reports/*.xml'
currentBuild.result = currentBuild.result ?: 'SUCCESS'
}
}
}
}