-
Notifications
You must be signed in to change notification settings - Fork 41
/
.evg.yml
486 lines (449 loc) · 14.1 KB
/
.evg.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
stepback: true
command_type: system
pre:
- func: "fetch source"
- func: "export variables"
post:
- func: "upload artifacts"
- func: "upload shared library files"
buildvariants:
- name: ubuntu1404-64
display_name: Ubuntu 14.04
expansions:
_platform: ubuntu1404-64
run_on: ubuntu1404-build
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
run_on: ubuntu1404-build
- name: ubuntu1604-64
display_name: Ubuntu 16.04
expansions:
_platform: ubuntu1604-64
run_on: ubuntu1604-build
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
run_on: ubuntu1604-build
- name: rhel70
display_name: RHEL 7.0
expansions:
_platform: rhel70
run_on: rhel70
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
- name: "integration_tests_local"
run_on: rhel70
- name: win64
display_name: Windows 64
expansions:
_platform: win64
run_on: windows-64-vs2015-compile
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
- name: "integration_tests_local"
- name: "sign_msi"
run_on: ubuntu2204-large
- name: win32
display_name: Windows 32
expansions:
_platform: win32
run_on: windows-64-vs2015-compile
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
- name: "integration_tests_local"
- name: "sign_msi"
run_on: ubuntu2204-large
- name: macos
display_name: OSX 11
expansions:
_platform: macos
run_on: macos-1100
tasks:
- name: "build"
- name: "unit_tests"
- name: "integration_tests_atlas"
- name: "integration_tests_local"
- name: "sign_dmg"
tasks:
- name: "build"
commands:
- func: "build libmongosql"
- func: "build odbc driver"
- func: "build msi installer"
- func: "build dmg installer"
- name: "integration_tests_atlas"
depends_on:
- name: build
commands:
- func: "fetch msi"
- func: "fetch shared library files"
- func: "run atlas integration tests"
- name: "integration_tests_local"
depends_on:
- name: build
commands:
- func: "fetch msi"
- func: "fetch shared library files"
- func: "run local integration tests"
- name: "sign_dmg"
depends_on:
- name: integration_tests_atlas
- name: integration_tests_local
commands:
- func: "fetch dmg"
- func: "sign dmg installer"
- func: "upload macos release packages"
- name: "sign_msi"
depends_on:
- name: integration_tests_atlas
- name: integration_tests_local
commands:
- func: "fetch msi"
- func: "sign msi installer"
- func: "upload windows release packages"
- name: unit_tests
commands:
- func: "build libmongosql"
- func: "run unit tests"
functions:
"build dmg installer":
command: shell.exec
type: test
params:
build_variants:
- macos
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/create-dmg.sh
"build msi installer":
command: shell.exec
type: test
params:
build_variants:
- win32
- win64
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/create-msi.sh
"build libmongosql":
- command: shell.exec
type: setup
params:
working_dir: mongo-odbc-driver
script: |
git submodule update --init --recursive
- command: shell.exec
type: test
params:
working_dir: ..
script: |
${PREPARE_SHELL}
${MYSQL_SCRIPT_DIR}/install-bison.sh
${MYSQL_SCRIPT_DIR}/build.sh
"build odbc driver":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/build-mongo-odbc.sh
"export variables":
- command: shell.exec
params:
silent: true
working_dir: mongo-odbc-driver/mongodb-odbc-driver/bin
script: |
if [ "Windows_NT" = "$OS" ]; then
set -o igncr
fi
export PLATFORM='${_platform|unset}'
. "./platforms.sh"
. "./prepare-shell.sh"
export S3_ARTIFACTS_DIR='mongo-odbc-driver/artifacts/${version_id}/${build_variant}'
export S3_RELEASES_DIR='mongo-odbc-driver/releases/${version_id}'
export RELEASE_BASENAME="mongo-odbc-$PLATFORM_NAME-$PLATFORM_ARCH"
export BIC_PROD_SERVER='${bic_prod_server}'
export BIC_PROD_PORT='${bic_prod_port}'
export BIC_PROD_USER='${bic_prod_user}'
export BIC_PROD_PASSWORD='${bic_prod_password}'
export BIC_DEV_SERVER='${bic_dev_server}'
export BIC_DEV_PORT='${bic_dev_port}'
export BIC_DEV_USER='${bic_dev_user}'
export BIC_DEV_PASSWORD='${bic_dev_password}'
# create expansions from values calculated above
mkdir -p $ARTIFACTS_DIR
cat <<EOT > $ARTIFACTS_DIR/expansions.yml
ARTIFACTS_DIR: "$ARTIFACTS_DIR"
SCRIPT_DIR: "$SCRIPT_DIR"
MYSQL_SCRIPT_DIR: "$MYSQL_SCRIPT_DIR"
PLATFORM_NAME: "$PLATFORM_NAME"
PLATFORM_ARCH: "$PLATFORM_ARCH"
S3_ARTIFACTS_DIR: "$S3_ARTIFACTS_DIR"
S3_RELEASES_DIR: "$S3_RELEASES_DIR"
RELEASE_BASENAME: "$RELEASE_BASENAME"
PREPARE_SHELL: |
if [ "Windows_NT" = "$OS" ]; then
set -o igncr
export SHELLOPTS
fi
export PLATFORM="$PLATFORM"
export BIC_PROD_SERVER="$BIC_PROD_SERVER"
export BIC_PROD_PORT="$BIC_PROD_PORT"
export BIC_PROD_USER="$BIC_PROD_USER"
export BIC_PROD_PASSWORD="$BIC_PROD_PASSWORD"
export BIC_DEV_SERVER="$BIC_DEV_SERVER"
export BIC_DEV_PORT="$BIC_DEV_PORT"
export BIC_DEV_USER="$BIC_DEV_USER"
export BIC_DEV_PASSWORD="$BIC_DEV_PASSWORD"
EOT
- command: expansions.update
params:
file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/expansions.yml
"fetch dmg":
- command: s3.get
params:
build_variants:
- macos
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: ${S3_ARTIFACTS_DIR}/mongodb-odbc-unsigned.dmg
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc.dmg
bucket: mciuploads
"fetch msi":
- command: s3.get
params:
build_variants:
- win32
- win64
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: ${S3_ARTIFACTS_DIR}/mongodb-odbc-unsigned.msi
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc.msi
bucket: mciuploads
"fetch shared library files":
- command: s3.get
params:
build_variants:
- macos
- ubuntu1404-64
- ubuntu1604-64
- rhel70
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: ${S3_ARTIFACTS_DIR}/libmdbodbca.so
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/drivers/libmdbodbca.so
bucket: mciuploads
- command: s3.get
params:
build_variants:
- macos
- ubuntu1404-64
- ubuntu1604-64
- rhel70
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: ${S3_ARTIFACTS_DIR}/libmdbodbcw.so
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/drivers/libmdbodbcw.so
bucket: mciuploads
"fetch source":
- command: shell.exec
params:
silent: true
script: |
rm -rf mongo-odbc-driver
- command: git.get_project
params:
directory: mongo-odbc-driver
"run atlas integration tests":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/run-atlas-integration-tests.sh
"run local integration tests":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/start-mongod.sh
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/start-sqlproxy.sh
${SCRIPT_DIR}/run-local-integration-tests.sh
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export TEST_SET='SSL'
${SCRIPT_DIR}/start-sqlproxy.sh
${SCRIPT_DIR}/run-local-integration-tests.sh
"run unit tests":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${MYSQL_SCRIPT_DIR}/run-unit-tests.sh
"sign dmg installer":
- command: shell.exec
params:
env:
MACOS_NOTARY_KEY: "${mac_notary_service_key_id}"
MACOS_NOTARY_SECRET: "${mac_notary_service_secret}"
script: |
"${SCRIPT_DIR}/sign-dmg-contents.sh"
"sign msi installer":
- command: shell.exec
type: system
params:
silent: true
script: |
docker login --username ${sql_engines_artifactory_username} --password ${sql_engines_artifactory_auth_token} ${release_tools_container_registry}
- command: shell.exec
type: system
params:
silent: true
working_dir: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/
env:
GRS_CONFIG_USER1_USERNAME: "${bic_odbc_garasign_username}"
GRS_CONFIG_USER1_PASSWORD: "${bic_odbc_garasign_password}"
script: |
docker run \
-e GRS_CONFIG_USER1_USERNAME \
-e GRS_CONFIG_USER1_PASSWORD \
--rm \
-v $(pwd):$(pwd) -w $(pwd) \
${garasign_jsign_image} \
/bin/bash -c "jsign -a ${authenticode_key_name} --replace --tsaurl http://timestamp.digicert.com -d SHA-256 mongodb-odbc.msi"
"upload artifacts":
- command: s3.put
params:
build_variants:
- win32
- win64
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc.msi
remote_file: ${S3_ARTIFACTS_DIR}/mongodb-odbc-unsigned.msi
content_type: application/x-msi
bucket: mciuploads
permissions: public-read
display_name: "Unsigned Installer (.msi)"
- command: s3.put
params:
build_variants:
- macos
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc.dmg
remote_file: ${S3_ARTIFACTS_DIR}/mongodb-odbc-unsigned.dmg
content_type: application/x-apple-diskimage
bucket: mciuploads
permissions: public-read
display_name: "Unsigned Installer (.dmg)"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/mlaunch/data/mongod.log
remote_file: ${S3_ARTIFACTS_DIR}/mongod.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: mongod.log
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/mongosqld/mongosqld.log
remote_file: ${S3_ARTIFACTS_DIR}/mongosqld.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: mongosqld.log
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_files_include_filter:
- mongo-odbc-driver/mongodb-odbc-driver/artifacts/log/*.log*
remote_file: ${S3_ARTIFACTS_DIR}/
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "Log File - "
"upload shared library files":
- command: s3.put
params:
build_variants:
- macos
- ubuntu1404-64
- ubuntu1604-64
- rhel70
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/drivers/libmdbodbca.so
remote_file: ${S3_ARTIFACTS_DIR}/libmdbodbca.so
content_type: application/x-sharedlib
bucket: mciuploads
permissions: public-read
display_name: "ANSI Driver (.so)"
- command: s3.put
params:
build_variants:
- macos
- ubuntu1404-64
- ubuntu1604-64
- rhel70
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/drivers/libmdbodbcw.so
remote_file: ${S3_ARTIFACTS_DIR}/libmdbodbcw.so
content_type: application/x-sharedlib
bucket: mciuploads
permissions: public-read
display_name: "Unicode Driver (.so)"
"upload windows release packages":
- command: s3.put
params:
build_variants:
- win32
- win64
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc.msi
remote_file: ${S3_RELEASES_DIR}/${RELEASE_BASENAME}.msi
content_type: application/x-msi
bucket: mciuploads
permissions: public-read
display_name: "Signed Installer (.msi)"
"upload macos release packages":
- command: s3.put
params:
build_variants:
- macos
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongo-odbc-driver/mongodb-odbc-driver/artifacts/pkg/mongodb-odbc-signed.dmg
remote_file: ${S3_RELEASES_DIR}/${RELEASE_BASENAME}.dmg
content_type: application/x-apple-diskimage
bucket: mciuploads
permissions: public-read
display_name: "Signed Installer (.dmg)"