-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
351 lines (338 loc) · 12.2 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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
* SPDX-FileCopyrightText: 2021 Zextras <https://www.zextras.com>
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
// git utils
String getRepositoryName() {
return sh(script: '''#!/bin/bash
git remote -v | head -n1 | cut -d$'\t' -f2 | cut -d' ' -f1 | sed -e 's!https://github.com/!!g' -e '[email protected]:!!g' -e 's!.git!!g'
''', returnStdout: true).trim()
}
String getLastTag() {
return sh(script: '''#!/bin/bash
git describe --tags --abbrev=0
''', returnStdout: true).trim()
}
Boolean tagExistsAtHead() {
try {
sh(script: '''#!/bin/bash
git describe --tags --exact-match
''', returnStdout: true)
return true
} catch (err) {
return false
}
}
// Package utils
String getPackageName() {
return sh(
script: """#!/usr/bin/env bash
cat package.json \
| jq --raw-output '.name'
""",
returnStdout: true
).trim()
}
// node utils
void nodeCmd(Map args = [:]) {
final boolean install = (args.install != null) ? args.install : false
def varEnv = []
((args.varEnv != null) ? args.varEnv : []).each { k, v -> varEnv.push("$k=$v") }
String version
if (fileExists('.nvmrc')) {
version = ''
} else {
version = (args.version != null) ? "${args.version} " : '16'
}
sh(
script: """#!/usr/bin/env bash
${varEnv.join(' ')} source load_nvm && nvm install ${version} && nvm use ${version} \
${install ? '&& npm ci ' : ''} \
${args.script != null ? "&& ${args.script} " : ''} \
"""
)
}
void npxCmd(Map args = [:]) {
nodeCmd(
version: args.nodeVersion,
install: args.install,
script: """
npx ${args.script}
""",
varEnv: args.varEnv
)
}
void npmLogin(String npmAuthToken) {
if (!fileExists(file: '.npmrc')) {
sh(
script: """
touch .npmrc;
echo "//registry.npmjs.org/:_authToken=${npmAuthToken}" > .npmrc
""",
returnStdout: false
)
}
}
// FLAGS
Boolean isReleaseBranch
Boolean isDevelBranch
Boolean isPullRequest
Boolean lcovIsPresent
// PROJECT DETAILS
String pkgName
pipeline {
agent {
node {
label "nodejs-agent-v4"
}
}
parameters {
booleanParam defaultValue: false, description: 'Run with test', name: 'TEST'
booleanParam defaultValue: true, description: 'Enable SonarQube Stage', name: 'RUN_SONARQUBE'
}
options {
timeout(time: 20, unit: "MINUTES")
buildDiscarder(logRotator(numToKeepStr: "50"))
}
post {
always {
script {
def commitEmail = sh(
script: "git --no-pager show -s --format='%ae'",
returnStdout: true
).trim()
emailext(
attachLog: true,
body: "\$DEFAULT_CONTENT",
recipientProviders: [requestor()],
subject: "\$DEFAULT_SUBJECT",
to: "${commitEmail}"
)
}
}
}
stages {
stage("Read settings") {
steps {
script {
isReleaseBranch = "${BRANCH_NAME}" ==~ /(release|master)/
echo "isReleaseBranch: ${isReleaseBranch}"
isDevelBranch = "${BRANCH_NAME}" ==~ /devel/
echo "isDevelBranch: ${isDevelBranch}"
isPullRequest = "${BRANCH_NAME}" ==~ /PR-\d+/
echo "isPullRequest: ${isPullRequest}"
pkgName = getPackageName()
echo "pkgName: ${pkgName}"
isSonarQubeEnabled = params.RUN_SONARQUBE == true && (isPullRequest || isDevelBranch || isReleaseBranch)
echo "isSonarQubeEnabled: ${isSonarQubeEnabled}"
}
withCredentials([
usernamePassword(
credentialsId: "npm-zextras-bot-auth-token",
usernameVariable: "NPM_USERNAME",
passwordVariable: "NPM_PASSWORD"
)
]) {
script {
npmLogin(NPM_PASSWORD)
}
}
stash(
includes: ".npmrc",
name: ".npmrc"
)
}
}
//============================================ Test ====================================================================
stage("Tests") {
when {
beforeAgent true
anyOf {
expression { isSonarQubeEnabled == true }
expression { isPullRequest == true }
expression { isDevelBranch == true }
expression { params.TEST == true }
}
}
parallel {
stage("Lint") {
agent {
node {
label "nodejs-agent-v4"
}
}
steps {
script {
catchError(buildResult: "UNSTABLE", stageResult: "FAILURE") {
unstash(name: ".npmrc")
nodeCmd(
install: true,
script: "npm run lint"
)
}
}
}
}
stage("TypeCheck") {
agent {
node {
label "nodejs-agent-v4"
}
}
steps {
script {
catchError(buildResult: "UNSTABLE", stageResult: "FAILURE") {
unstash(name: ".npmrc")
nodeCmd(
install: true,
script: "npm run type-check"
)
}
}
}
}
stage("Unit Tests") {
agent {
node {
label "nodejs-agent-v4"
}
}
steps {
script {
catchError(buildResult: "UNSTABLE", stageResult: "FAILURE") {
unstash(name: ".npmrc")
nodeCmd(
install: true,
script: "npm run test"
)
}
}
}
post {
success {
script {
if (fileExists('junit.xml')) {
junit(
allowEmptyResults: true,
testResults: 'junit.xml'
)
recordCoverage(tools: [[parser: 'COBERTURA', pattern: 'coverage/cobertura-coverage.xml']])
}
if (fileExists('coverage/lcov.info')) {
lcovIsPresent = true
stash(
includes: 'coverage/lcov.info',
name: 'lcov.info'
)
}
}
}
}
}
}
}
stage("SonarQube Check") {
agent {
node {
label 'nodejs-agent-v4'
}
}
when {
beforeAgent(true)
allOf {
expression { isSonarQubeEnabled == true }
}
}
steps {
script {
if (lcovIsPresent) {
unstash(name: 'lcov.info')
}
// remove @zextras/ prefix to make pkgName a valid sonarqube project key
def sonarQubeProjectKey = pkgName.replaceAll("@zextras/", "")
withSonarQubeEnv(credentialsId: 'sonarqube-user-token', installationName: 'SonarQube instance') {
script {
npxCmd(
script: "sonarqube-scanner -Dsonar.projectKey=${sonarQubeProjectKey} -Dsonar.javascript.lcov.reportPaths=coverage/lcov.info"
)
}
}
}
}
}
// ===================================== Build ==============================================================
stage("Build") {
agent {
node {
label "nodejs-agent-v4"
}
}
steps {
script {
unstash(name: '.npmrc')
script {
nodeCmd(
install: true,
script: 'npm run build'
)
}
}
}
}
// ============================================ Release Automation ==============================================
stage('Release') {
when {
beforeAgent true
allOf {
expression { isPullRequest == false }
}
}
steps {
script {
withCredentials([usernamePassword(credentialsId: 'npm-zextras-bot-auth-token', usernameVariable: 'AUTH_USERNAME', passwordVariable: 'NPM_TOKEN')]) {
withCredentials([usernamePassword(credentialsId: 'tarsier-bot-pr-token-github', usernameVariable: 'GH_USERNAME', passwordVariable: 'GH_TOKEN')]) {
npxCmd(
script: "semantic-release",
install: true
)
}
}
}
}
}
stage('Open release to devel pull request') {
when {
beforeAgent true
allOf {
expression { isReleaseBranch == true }
expression { tagExistsAtHead() == true }
}
}
steps {
script {
catchError(buildResult: "UNSTABLE", stageResult: "FAILURE") {
String versionBumperBranchName = "version-bumper/${getLastTag()}"
sh(script: """#!/bin/bash
git push origin HEAD:refs/heads/${versionBumperBranchName}
""")
withCredentials([usernamePassword(credentialsId: 'tarsier-bot-pr-token-github', usernameVariable: 'GH_USERNAME', passwordVariable: 'GH_TOKEN')]) {
sh(script: """
curl https://api.github.com/repos/${getRepositoryName()}/pulls \
-X POST \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Authorization: token ${GH_TOKEN}' \
-d '{
\"title\": \"chore(release): ${getLastTag()}\",
\"head\": \"${versionBumperBranchName}\",
\"base\": \"devel\",
\"maintainer_can_modify\": true
}'
""")
}
}
}
}
}
}
}