-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge-request-basic.groovy
70 lines (63 loc) · 2.01 KB
/
merge-request-basic.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
pipeline {
agent any
tools {
maven 'Maven'
jdk 'JDK8'
}
options{
gitlabBuilds(builds: ["Preparation","Build"])
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"
}catch(error){
currentBuild.result = 'FAILURE'
throw error
}
}
}
}
}
}
}
}
post {
always {
script {
echo "Post stage"
junit '**/target/*-reports/*.xml'
currentBuild.result = currentBuild.result ?: 'SUCCESS'
}
}
}
}