-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
70 lines (54 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
#!groovy
def project = new Project();
properties([
/* Only keep the 10 most recent builds. */
[$class: 'BuildDiscarderProperty', strategy: [$class: 'LogRotator', numToKeepStr: '10']],
])
try {
stage 'Checkout Code'
node('bogie-slave') {
deleteDir()
checkoutCode {}
project.loadProperties()
stash 'sources'
}
stage 'Maven Build'
node('bogie-slave') {
deleteDir()
unstash 'sources'
mavenBuild {}
dockerTasks {
name = project['name']
version = project['version']
}
stash includes: '**/*.jar,**/*.war', name: 'binaries'
}
stage name: 'Sonar Analysis', concurrency: 1
node('bogie-slave') {
deleteDir()
unstash 'sources'
sonarAnalysis {}
}
stage name: 'Build Dev Environment', concurrency: 1
bogieInfra {
service = project['name']
environment = 'dev'
}
stage name: 'Dev Deploy', concurrency: 1
node('bogie-slave') {
bogieDeploy {
serviceName = project['name']
serviceVersion = project['version']
deployEnv = 'dev'
}
}
} catch (BotTriggerException ex) {
echo "Skipping this build - bots are excluded from triggering the pipeline"
return // exit the pipeline without failing the build
} catch (Exception ex) {
sendFailureNotifications {
emailCulprits = true // emails the suspected commit culprit(s)
// notifyHipChatRoom = '<room_name>' // send notification to the team's hipchat room
}
throw ex // re-throw so that the exception bubbles up to the console
}