forked from overture-stack/arranger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
376 lines (351 loc) · 13.8 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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
String podSpec = '''
apiVersion: v1
kind: Pod
spec:
containers:
- name: node
image: node:16
tty: true
env:
- name: HOME
value: /home/jenkins/agent
- name: TEST_ES_HOST
value: http://localhost:9200
resources:
requests:
memory: 768Mi
cpu: 1000m
limits:
memory: 2560Mi
cpu: 4000m
- name: elasticsearch
image: elasticsearch:7.17.1
tty: true
env:
- name: discovery.type
value: single-node
- name: ES_JAVA_OPTS
value: '-Xms512m -Xmx512m'
command:
- cat
resources:
requests:
memory: 512Mi
cpu: 1024m
limits:
memory: 1024Mi
cpu: 1536m
- name: docker
image: docker:20-git
tty: true
env:
- name: DOCKER_HOST
value: tcp://localhost:2375
- name: HOME
value: /home/jenkins/agent
resources:
requests:
memory: 256Mi
cpu: 100m
limits:
memory: 512Mi
cpu: 1024m
- name: dind-daemon
image: docker:18-dind
securityContext:
privileged: true
runAsUser: 0
volumeMounts:
- name: docker-graph-storage
mountPath: /var/lib/docker
resources:
requests:
memory: 512Mi
cpu: 100m
limits:
memory: 1536Mi
cpu: 1500m
securityContext:
runAsUser: 1000
volumes:
- name: docker-graph-storage
emptyDir: {}
'''
pipeline {
agent {
kubernetes {
yaml podSpec
}
}
environment {
appName = 'arranger'
dockerHubImageName = "overture/${appName}"
gitHubRegistry = 'ghcr.io'
gitHubRepo = "overture-stack/${appName}"
githubImageName = "${gitHubRegistry}/${gitHubRepo}"
chartsServer = 'https://overture-stack.github.io/charts-server/'
commit = sh(
returnStdout: true,
script: 'git describe --always'
).trim()
version = sh(
returnStdout: true,
script:
'cat lerna.json | ' +
'grep "version" -m 1 | ' +
'cut -d : -f2 | ' +
"sed \'s:[\",]::g\'"
).trim()
slackNotificationsUrl = credentials('OvertureSlackJenkinsWebhookURL')
}
options {
timeout(time: 30, unit: 'MINUTES')
timestamps()
}
stages {
stage('Build modules') {
steps {
container('node') {
sh 'npm ci'
sh 'npm run bootstrap'
}
}
}
stage('Run tests') {
steps {
container('elasticsearch') {
withEnv(['JENKINS_NODE_COOKIE=do_not_kill']) {
sh 'elasticsearch &'
}
}
container('node') {
sh 'chmod +x -R ' + env.WORKSPACE
sh 'npm run test -- --scope "@overture-stack/arranger-components"'
sh 'npm run test -- --scope "@overture-stack/arranger-server"'
sh 'docker/test/wait-for-es.sh \$TEST_ES_HOST npm run test -- --scope "integration-tests-*"'
}
}
}
stage('Build images') {
when {
anyOf {
branch 'develop'
branch 'main'
branch 'test'
}
}
steps {
container('docker') {
sh "DOCKER_BUILDKIT=1 \
docker build \
--target server \
--network=host \
-f ./docker/Dockerfile.jenkins \
-t server:${commit} ."
}
}
}
stage('Tag git version') {
when {
branch 'main'
}
steps {
container('docker') {
withCredentials([usernamePassword(
credentialsId: 'OvertureBioGithub',
passwordVariable: 'GIT_PASSWORD',
usernameVariable: 'GIT_USERNAME'
)]) {
sh "git tag v${version}"
sh "git push https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${gitHubRepo} --tags"
}
}
}
}
stage('Push images') {
when {
anyOf {
branch 'develop'
branch 'main'
}
}
parallel {
stage('...to dockerhub') {
steps {
container('docker') {
withCredentials([usernamePassword(
credentialsId:'OvertureDockerHub',
passwordVariable: 'PASSWORD',
usernameVariable: 'USERNAME'
)]) {
sh "docker login -u $USERNAME -p $PASSWORD"
script {
if (env.BRANCH_NAME ==~ 'main') { // push latest and version tags
sh "docker tag server:${commit} ${dockerHubImageName}-server:${version}"
sh "docker push ${dockerHubImageName}-server:${version}"
sh "docker tag server:${commit} ${dockerHubImageName}-server:latest"
sh "docker push ${dockerHubImageName}-server:latest"
} else { // push commit tag
sh "docker tag server:${commit} ${dockerHubImageName}-server:${commit}"
sh "docker push ${dockerHubImageName}-server:${commit}"
}
if (env.BRANCH_NAME ==~ 'develop') { // push edge tag
sh "docker tag server:${commit} ${dockerHubImageName}-server:edge"
sh "docker push ${dockerHubImageName}-server:edge"
}
}
}
}
}
}
stage('...to github') {
steps {
container('docker') {
withCredentials([usernamePassword(
credentialsId:'OvertureBioGithub',
passwordVariable: 'PASSWORD',
usernameVariable: 'USERNAME'
)]) {
sh "docker login ${gitHubRegistry} -u $USERNAME -p $PASSWORD"
script {
if (env.BRANCH_NAME ==~ 'main') { //push edge and commit tags
sh "docker tag server:${commit} ${githubImageName}-server:${version}"
sh "docker push ${githubImageName}-server:${version}"
sh "docker tag server:${commit} ${githubImageName}-server:latest"
sh "docker push ${githubImageName}-server:latest"
} else { // push commit tag
sh "docker tag server:${commit} ${githubImageName}-server:${commit}"
sh "docker push ${githubImageName}-server:${commit}"
}
if (env.BRANCH_NAME ==~ 'develop') { // push edge tag
sh "docker tag server:${commit} ${githubImageName}-server:edge"
sh "docker push ${githubImageName}-server:edge"
}
}
}
}
}
}
}
}
stage('Publish tag to npm') {
when {
branch 'main'
}
steps {
container('node') {
withCredentials([
string(
credentialsId: 'OvertureNPMAutomationToken',
variable: 'NPM_TOKEN'
)
]) {
script {
// we still want to run the platform deploy even if this fails, hence try-catch
try {
sh 'git reset --hard HEAD'
sh 'git pull --tags'
sh "npm config set '//registry.npmjs.org/:_authToken' \"${NPM_TOKEN}\""
sh 'PUBLISH_DECLARATIONS=true npm run publish::ci'
// send a notification to the slack #overture-jenkins channel in OICR workspace
sh "curl \
-X POST \
-H 'Content-type: application/json' \
--data '{ \
\"text\":\"New Arranger published succesfully: v.${version}\
\n[Build ${env.BUILD_NUMBER}] (${env.BUILD_URL})\" \
}' \
${slackNotificationsUrl}"
} catch (err) {
echo 'There was an error while publishing packages'
}
}
}
}
}
}
// stage('Deploy to Overture QA') {
// when {
// branch 'develop'
// }
// steps {
// build(job: '/Overture.bio/provision/helm', parameters: [
// [$class: 'StringParameterValue', name: 'OVERTURE_ENV', value: 'qa' ],
// [$class: 'StringParameterValue', name: 'OVERTURE_CHART_NAME', value: 'arranger'],
// [$class: 'StringParameterValue', name: 'OVERTURE_RELEASE_NAME', value: 'arranger'],
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_CHART_VERSION', value: ''], // use latest chart
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_REPO_URL', value: chartsServer],
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_REUSE_VALUES', value: "false" ],
// [$class: 'StringParameterValue', name: 'OVERTURE_ARGS_LINE', value: "--set-string apiImage.tag=${commit} --set-string uiImage.tag=${commit}" ]
// ])
// }
// }
// stage('Deploy to Overture Staging') {
// when {
// branch 'master'
// }
// steps {
// build(job: '/Overture.bio/provision/helm', parameters: [
// [$class: 'StringParameterValue', name: 'OVERTURE_ENV', value: 'staging' ],
// [$class: 'StringParameterValue', name: 'OVERTURE_CHART_NAME', value: 'arranger'],
// [$class: 'StringParameterValue', name: 'OVERTURE_RELEASE_NAME', value: 'arranger'],
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_CHART_VERSION', value: ''], // use latest chart
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_REPO_URL', value: chartsServer],
// [$class: 'StringParameterValue', name: 'OVERTURE_HELM_REUSE_VALUES', value: "false" ],
// [$class: 'StringParameterValue', name: 'OVERTURE_ARGS_LINE', value: "--set-string apiImage.tag=${version} --set-string uiImage.tag=${version}" ]
// ])
// }
// }
// }
}
post {
failure {
container('node') {
script {
if (env.BRANCH_NAME ==~ /(develop|main|\S*[Tt]est\S*)/) {
sh "curl \
-X POST \
-H 'Content-type: application/json' \
--data '{ \
\"text\":\"Build Failed: ${env.JOB_NAME}#${commit} \
\n[Build ${env.BUILD_NUMBER}] (${env.BUILD_URL})\" \
}' \
${slackNotificationsUrl}"
}
}
}
}
fixed {
container('node') {
script {
if (env.BRANCH_NAME ==~ /(develop|main|\S*[Tt]est\S*)/) {
sh "curl \
-X POST \
-H 'Content-type: application/json' \
--data '{ \
\"text\":\"Build Fixed: ${env.JOB_NAME}#${commit} \
\n[Build ${env.BUILD_NUMBER}] (${env.BUILD_URL})\" \
}' \
${slackNotificationsUrl}"
}
}
}
}
success {
container('node') {
script {
if (env.BRANCH_NAME ==~ /(\S*[Tt]est\S*)/) {
sh "curl \
-X POST \
-H 'Content-type: application/json' \
--data '{ \
\"text\":\"Build tested: ${env.JOB_NAME}#${commit} \
\n[Build ${env.BUILD_NUMBER}] (${env.BUILD_URL})\" \
}' \
${slackNotificationsUrl}"
}
}
}
}
}
}