forked from devopsbc01/DevOps-Demo-WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
151 lines (97 loc) · 3.53 KB
/
Jenkinsfile
File metadata and controls
151 lines (97 loc) · 3.53 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
pipeline {
agent any
tools {
maven 'Maven3.6.3'
}
stages {
stage('BuildWebApp') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
sh "mvn compile"
}
}
stage('DeployToTest') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
sh "mvn package"
}
post {
success {
deploy adapters: [tomcat8(credentialsId: 'tomcat', path: '', url: 'http://18.218.93.120:8080/')],
contextPath: '/QAWebapp',
war: '**/*.war'
echo "'Deploy to QA' - completed successfully."
//jiraComment body: 'Build Success - Review Build and Deployment Info for Test server', issueKey: 'SQ9DEV-1'
//jiraSendDeploymentInfo environmentId: 'Test', environmentName: 'Test', environmentType: 'testing', issueKeys: ['SQ9DEV-1'], serviceIds: [''], site: 'hddevopsjiracloud.atlassian.net', state: 'successful'
}
}
}
stage('StoreArtifacts') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
script {
def server = Artifactory.server 'artifactory'
def rtMaven = Artifactory.newMavenBuild()
def buildInfo
rtMaven.tool = 'Maven3.6.3'
rtMaven.deployer releaseRepo: 'libs-release-local', snapshotRepo: 'libs-snapshot-local', server: server
rtMaven.resolver releaseRepo: 'libs-release', snapshotRepo: 'libs-snapshot', server: server
buildInfo = Artifactory.newBuildInfo()
buildInfo.env.capture = true
rtMaven.run pom: 'pom.xml', goals: 'package', buildInfo: buildInfo
server.publishBuildInfo buildInfo
}
}
}
stage('UITest') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
sh "mvn -f functionaltest/pom.xml test"
}
post {
success {
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: '\\functionaltest\\target\\surefire-reports', reportFiles: 'index.html', reportName: 'UI Test', reportTitles: ''])
echo "UITest results published successfully."
}
}
}
stage('PerformanceTest') {
steps {
blazeMeterTest credentialsId: 'Blazemeter', testId: '747322.taurus', workspaceId: '755428'
}
}
stage('DeployToProd') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
sh "mvn clean install"
}
post {
success {
deploy adapters: [tomcat8(credentialsId: 'tomcat', path: '', url: 'http://18.220.4.111:8080/')],
contextPath: '/ProdWebapp',
war: '**/*.war'
echo "'Deploy to Prod' - completed successfully."
}
}
}
stage('SanityTest') {
steps {
git 'https://github.com/muthuinit/DevOps-Demo-WebApp.git'
sh "mvn -f Acceptancetest/pom.xml test"
}
post {
always {
slackSend channel: 'alerts', color: 'good', message: "Started - Job Name - ${env.JOB_NAME}, Build# - ${env.BUILD_NUMBER}, (<${env.BUILD_URL}|Open>)", tokenCredentialId: 'slacknotifications', username: 'jenkins'
}
success {
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: '\\Acceptancetest\\target\\surefire-reports', reportFiles: 'index.html', reportName: 'Sanity Test Report', reportTitles: ''])
echo "SanityTest results published successfully."
slackSend channel: 'alerts', color: 'good', message: "Success - Job Name - ${env.JOB_NAME}, Build# - ${env.BUILD_NUMBER}, (<${env.BUILD_URL}|Open>)", tokenCredentialId: 'slacknotifications', username: 'jenkins'
}
failure {
slackSend channel: 'alerts', color: 'danger', message: "Failed - Job Name - ${env.JOB_NAME}, Build# - ${env.BUILD_NUMBER}, (<${env.BUILD_URL}|Open>)", tokenCredentialId: 'slacknotifications', username: 'jenkins'
}
}
}
}
}