-
-
Notifications
You must be signed in to change notification settings - Fork 527
/
azure-pipelines.yml
381 lines (365 loc) · 12.1 KB
/
azure-pipelines.yml
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
377
378
379
380
381
trigger:
tags:
include:
- 'v*'
exclude:
- '*.beta.*'
branches:
include:
- master
pr:
branches:
include:
- master
variables:
- group: website_secrets
- name: KAFKA_VERSION
value: 2.4
- name: COMPOSE_FILE
value: docker-compose.2_4.yml
####### Linter
jobs:
- job: lint
displayName: Lint
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn lint
displayName: yarn lint
- job: typescript_types
displayName: Typescript types
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:types
displayName: yarn test:types
####### Tests
- job: test_broker
displayName: Broker
dependsOn: lint
variables:
test_retries: 2
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:broker:ci
displayName: test
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-report.xml'
- job: test_admin
displayName: Admin
dependsOn: lint
variables:
test_retries: 2
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:admin:ci
displayName: test
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-report.xml'
- job: test_producer
displayName: Producer
dependsOn: lint
variables:
test_retries: 2
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:producer:ci
displayName: test
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-report.xml'
- job: test_consumer
displayName: Consumer
dependsOn: lint
variables:
test_retries: 2
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:consumer:ci
displayName: test
env:
NODE_OPTIONS: --max-old-space-size=6655 # 6.5 GB (agents run on Standard_DS2_v2 - https://docs.microsoft.com/en-us/azure/virtual-machines/dv2-dsv2-series#dsv2-series)
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-report.xml'
- job: test_others
displayName: 'Others (protocol, cluster, network, etc)'
dependsOn: lint
variables:
test_retries: 2
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:others:ci
displayName: test
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: "**/test-report.xml"
- job: test_oauthbearer
displayName: 'OauthBearer'
dependsOn: lint
variables:
- name: test_retries
value: 2
- name: COMPOSE_FILE
value: docker-compose.2_4_oauthbearer.yml
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
displayName: yarn install
- bash: test $SKIP_TESTS && echo "Skipped!" || docker-compose -f ${COMPOSE_FILE} pull
displayName: docker-compose pull
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn test:group:oauthbearer:ci
displayName: test
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: "**/test-report.xml"
####### Deploy
- job: npm_release
displayName: 'NPM release'
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'))
dependsOn:
- lint
- test_broker
- test_admin
- test_producer
- test_consumer
- test_others
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- task: Npm@1
inputs:
command: publish
publishEndpoint: npm_registry
- bash: TOKEN=${GH_TOKEN} TAG=$(Build.SourceBranch) ./scripts/pipeline/updateGithubRelease.js
displayName: github release
env:
GH_TOKEN: $(GH_TOKEN)
- job: version_website
displayName: 'Version website'
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/tags/'))
dependsOn:
- npm_release
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: |
git config user.name "Website Build Bot"
git config user.email "<>"
displayName: git config
- bash: |
cd website
yarn install
DOC_VERSION=$(echo "$VERSION" | sed -e "s/^refs\/tags\/v//")
yarn run version "$DOC_VERSION"
displayName: generate version
env:
VERSION: $(Build.SourceBranch)
GH_TOKEN: $(GH_TOKEN)
- bash: |
git add .
DOC_VERSION=$(echo "$VERSION" | sed -e "s/^refs\/tags\/v//")
git commit -m "Versioned docs for $DOC_VERSION"
git push origin HEAD:master
displayName: commit
env:
VERSION: $(Build.SourceBranch)
####### Pre-release
- job: beta_release_check
displayName: 'Beta release check'
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/heads/master'))
dependsOn:
- lint
- test_broker
- test_admin
- test_producer
- test_consumer
- test_others
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: yarn install
displayName: yarn install
- bash: ./scripts/pipeline/checkBetaEligibility.js
name: beta_check
displayName: Check beta eligibility
- job: npm_beta_release
displayName: 'NPM beta release'
condition: |
and(
succeeded(),
contains(variables['Build.SourceBranch'], 'refs/heads/master'),
ne(dependencies.beta_release_check.outputs['beta_check.SKIP_PRE_RELEASE'], 'true')
)
dependsOn:
- lint
- test_broker
- test_admin
- test_producer
- test_consumer
- test_others
- beta_release_check
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: yarn install
displayName: yarn install
- bash: ./scripts/pipeline/generateBetaReleaseVersion.js
displayName: generate beta release version
- bash: ./scripts/pipeline/updatePackageJsonForPreRelease.js
displayName: update package.json for beta release
- task: Npm@1
inputs:
command: custom
customCommand: publish --tag beta
customEndpoint: npm_registry
publishEndpoint: npm_registry
- bash: TOKEN=${GH_TOKEN} ./scripts/pipeline/commentBackOnPR.js
displayName: 'Comment on PR'
env:
GH_TOKEN: $(GH_TOKEN)
- bash: ./scripts/pipeline/triggerCanaryAppPipeline.sh
displayName: Trigger canary app pipeline
env:
GH_TOKEN: $(GH_TOKEN)
# - bash: echo "##vso[task.setvariable variable=RELEASE_TAG;isOutput=true]v$PRE_RELEASE_VERSION"
# displayName: Set tag name
# - task: GithubRelease@0
# displayName: github beta release
# inputs:
# gitHubConnection: github
# repositoryName: tulios/kafkajs
# tagSource: manual
# tag: '$(RELEASE_TAG)'
####### Website
- job: website_deploy
displayName: 'Website'
condition: and(succeeded(), contains(variables['Build.SourceBranch'], 'refs/heads/master'))
dependsOn:
- lint
- test_broker
- test_admin
- test_producer
- test_consumer
- test_others
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
- bash: git config core.autocrlf true || test true
displayName: git config core.autocrlf
- bash: git config --global user.name "${GH_NAME}" || test true
displayName: git config username
env:
GH_NAME: $(GH_NAME)
- bash: git config --global user.email "${GH_EMAIL}" || test true
displayName: git config email
env:
GH_EMAIL: $(GH_EMAIL)
- bash: echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc || test true
displayName: git config machine
env:
GH_NAME: $(GH_NAME)
GH_TOKEN: $(GH_TOKEN)
- bash: cd website && yarn install && GIT_USER="${GH_NAME}" yarn run publish-gh-pages || test true
displayName: publish to gh-pages
env:
GH_NAME: $(GH_NAME)