This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
forked from tulios/kafkajs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines.yml
302 lines (288 loc) · 9.52 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
trigger:
tags:
include:
- 'v*'
exclude:
- '*.beta.*'
branches:
include:
- master
pr:
branches:
include:
- master
variables:
- group: website_secrets
- name: KAFKA_VERSION
value: 2.3
- name: COMPOSE_FILE
value: docker-compose.2_3.yml
####### Linter
jobs:
- job: lint
displayName: Lint
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-report.xml'
- job: test_others
displayName: 'Others (protocol, cluster, network, etc)'
dependsOn: lint
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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'
####### 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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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: 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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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: 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)'
- 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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.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)