-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
288 lines (245 loc) · 9.35 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
//this is the scripted method with groovy engine
import hudson.model.Result
node {
//Configuration
def gitURL = "git@github.com:abes-esr/accescbs.git"
def gitCredentials = ''
def jarDir = "target/"
def jarName = "AccesCbs"
def slackChannel = "#notif-api-communes"
// Variables globales
def maventool
def rtMaven
def buildInfo
def server
def serverHostnames = []
def executeTests
def executeRelease
// Configuration du job Jenkins
// On garde les 5 derniers builds par branche
// On scanne les branches et les tags du Git
properties([
buildDiscarder(
logRotator(
artifactDaysToKeepStr: '',
artifactNumToKeepStr: '',
daysToKeepStr: '',
numToKeepStr: '5')
),
parameters([
gitParameter(
branch: '',
branchFilter: 'origin/(.*)',
defaultValue: 'main',
description: 'Sélectionner la branche ou le tag à déployer',
name: 'BRANCH_TAG',
quickFilterEnabled: false,
selectedValue: 'NONE',
sortMode: 'DESCENDING_SMART',
tagFilter: '*',
type: 'PT_BRANCH_TAG'),
booleanParam(defaultValue: false, description: 'Voulez-vous exécuter les tests ?', name: 'executeTests'),
booleanParam(defaultValue: false, description: 'Voulez-vous exécuter une release ?', name: 'executeRelease'),
string(name: 'RELEASE_VERSION', defaultValue: '', description: 'Saisir le numéro de version pour la release')
])
])
stage('---- Set environnement variables ----') {
try {
env.JAVA_HOME = "${tool 'Open JDK 11'}"
env.PATH = "${env.JAVA_HOME}/bin:${env.PATH}"
maventool = tool 'Maven 3.3.9'
rtMaven = Artifactory.newMavenBuild()
server = Artifactory.server '-1137809952@1458918089773'
rtMaven.tool = 'Maven 3.3.9'
rtMaven.opts = '-Xms1024m -Xmx4096m'
if (params.BRANCH_TAG == null) {
throw new Exception("Variable BRANCH_TAG is null")
} else {
echo "Branch to deploy = ${params.BRANCH_TAG}"
}
if (params.executeTests == null) {
executeTests = false
} else {
executeTests = params.executeTests
}
if (params.executeRelease == null) {
executeRelease = false
} else {
executeRelease = params.executeRelease
}
echo "executeTests = ${executeTests}"
echo "executeRelease = ${executeRelease}"
} catch (e) {
currentBuild.result = hudson.model.Result.NOT_BUILT.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
throw e
}
}
stage('---- SCM checkout ----') {
try {
checkout([
$class : 'GitSCM',
branches : [[name: "${params.BRANCH_TAG}"]],
doGenerateSubmoduleConfigurations: false,
extensions : [[$class: 'LocalBranch', localBranch: "**"]],
submoduleCfg : [],
userRemoteConfigs : [[credentialsId: "${gitCredentials}", url: "${gitURL}"]]
])
} catch (e) {
currentBuild.result = hudson.model.Result.FAILURE.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
throw e
}
}
stage("---- Edit properties files ----") {
try {
echo "Edition CommandesTest.properties"
echo "--------------------------"
original = readFile "src/test/resources/CommandesTest.properties"
newconfig = original
withCredentials([
string(credentialsId: "AccesCbs-connect-login", variable: 'connectLogin')
]) {
newconfig = newconfig.replaceAll("connect.login=*", "connect.login=${connectLogin}")
}
withCredentials([
string(credentialsId: "AccesCbs-connect-password", variable: 'password')
]) {
newconfig = newconfig.replaceAll("connect.password=*", "connect.password=${password}")
}
withCredentials([
string(credentialsId: "AccesCbs-connect-ip", variable: 'ip')
]) {
newconfig = newconfig.replaceAll("connect.ip=*", "connect.ip=${ip}")
}
withCredentials([
string(credentialsId: "AccesCbs-connect-port", variable: 'port')
]) {
newconfig = newconfig.replaceAll("connect.port=*", "connect.port=${port}")
}
writeFile file: "src/test/resources/CommandesTest.properties", text: "${newconfig}"
} catch (e) {
currentBuild.result = hudson.model.Result.FAILURE.toString()
notifySlack(slackChannel, "Failed to edit properties files: " + e.getLocalizedMessage())
throw e
}
}
if ("${executeRelease}" == 'true') {
echo "---- RELEASE ----"
stage('---- Release ----') {
try {
echo "---------- prepare + perform ----------------"
sh "'${maventool}/bin/mvn' -DcheckModificationExcludeList=src/test/resources/CommandesTest.properties -DreleaseVersion=${params.RELEASE_VERSION} -DconnectionUrl=scm:git:git@github.com:abes-esr/accescbs.git release:clean release:prepare release:perform -P releaseDocumentation site"
echo "fin release"
} catch(e) {
currentBuild.result = hudson.model.Result.FAILURE.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
throw e
}
}
stage('---- publish to javadoc server ----') {
sshPublisher(
publishers: [
sshPublisherDesc(
configName: 'javadoc server',
transfers: [
sshTransfer(cleanRemote: false,
excludes: '',
execCommand: '',
execTimeout: 120000,
flatten: false,
makeEmptyDirs: false,
noDefaultExcludes: false,
patternSeparator: '[, ]+',
remoteDirectory: '',
remoteDirectorySDF: false,
removePrefix: '',
sourceFiles: 'javadocAccessCbs/**/*.*'
)],
usePromotionTimestamp: false,
useWorkspaceInPromotion: false,
verbose: false)])
}
}
else {
if ("${executeTests}" == 'true') {
stage('test') {
try {
rtMaven.run pom: 'pom.xml', goals: 'clean test'
junit allowEmptyResults: true, testResults: '/target/surefire-reports/*.xml'
} catch (e) {
currentBuild.result = hudson.model.Result.UNSTABLE.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
// Si les tests ne passent pas, on mets le build en UNSTABLE et on continue
//throw e
}
}
} else {
echo "Tests are skipped"
}
stage('---- compile + install ---- ') {
try {
echo "Compilation..."
echo "--------------------------"
sh "'${maventool}/bin/mvn' -Dmaven.test.skip=true clean install -DfinalName='${jarName}'"
} catch(e) {
currentBuild.result = hudson.model.Result.FAILURE.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
throw e
}
}
stage('---- send to sonarqube ----'){
withSonarQubeEnv('SonarQube Server'){
sh "${maventool}/bin/mvn sonar:sonar"
}
}
stage ('---- send to Artifactory ---- ') {
try {
rtMaven.deployer server: server, releaseRepo: 'libs-release-local', snapshotRepo: 'libs-snapshot-local'
buildInfo = Artifactory.newBuildInfo()
buildInfo = rtMaven.run pom: 'pom.xml', goals: '-U clean install -Dmaven.test.skip=true '
rtMaven.deployer.deployArtifacts buildInfo
buildInfo = rtMaven.run pom: 'pom.xml', goals: 'clean install -Dmaven.repo.local=.m2 -Dmaven.test.skip=true'
buildInfo.env.capture = true
server.publishBuildInfo buildInfo
} catch(e) {
currentBuild.result = hudson.model.Result.FAILURE.toString()
notifySlack(slackChannel,e.getLocalizedMessage())
throw e
}
}
}
currentBuild.result = hudson.model.Result.SUCCESS.toString()
notifySlack(slackChannel,"Congratulation !")
}
def notifySlack(String slackChannel, String info = '') {
def colorCode = '#848484' // Gray
switch (currentBuild.result) {
case 'NOT_BUILT':
colorCode = '#FFA500' // Orange
break
case 'SUCCESS':
colorCode = '#00FF00' // Green
break
case 'UNSTABLE':
colorCode = '#FFFF00' // Yellow
break
case 'FAILURE':
colorCode = '#FF0000' // Red
break;
}
String message = """
*Jenkins Build*
Job name: `${env.JOB_NAME}`
Build number: `#${env.BUILD_NUMBER}`
Build status: `${currentBuild.result}`
Branch or tag: `${params.BRANCH_TAG}`
Target environment: `${params.ENV}`
Message: `${info}`
Build details: <${env.BUILD_URL}/console|See in web console>
""".stripIndent()
return slackSend(tokenCredentialId: "slack_token",
channel: "${slackChannel}",
color: colorCode,
message: message)
}