-
Notifications
You must be signed in to change notification settings - Fork 164
/
Jenkinsfile
executable file
·844 lines (749 loc) · 32.9 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
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
#!groovy
@Library('realm-ci') _
cocoaStashes = []
androidStashes = []
publishingStashes = []
dependencies = null
tokens = "${env.JOB_NAME}".tokenize('/')
org = tokens[tokens.size()-3]
repo = tokens[tokens.size()-2]
branch = tokens[tokens.size()-1]
ctest_cmd = "ctest -VV"
warningFilters = [
excludeFile('/external/*'), // submodules and external libraries
excludeFile('/src/external/*'), // submodules and external libraries
excludeFile('/libuv-src/*'), // libuv, where it was downloaded and built inside cmake
excludeFile('/src/realm/parser/generated/*'), // the auto generated parser code we didn't write
]
jobWrapper {
stage('gather-info') {
isPullRequest = !!env.CHANGE_TARGET
targetBranch = isPullRequest ? env.CHANGE_TARGET : "none"
rlmNode('docker') {
getSourceArchive()
stash includes: '**', name: 'core-source', useDefaultExcludes: false
dependencies = readYaml file: 'dependencies.yml'
echo "Version in dependencies.yml: ${dependencies.VERSION}"
gitTag = readGitTag()
gitSha = sh(returnStdout: true, script: 'git rev-parse HEAD').trim().take(8)
gitDescribeVersion = sh(returnStdout: true, script: 'git describe --tags').trim()
echo "Git tag: ${gitTag ?: 'none'}"
if (!gitTag) {
echo "No tag given for this build"
setBuildName(gitSha)
} else {
if (gitTag != "v${dependencies.VERSION}") {
error "Git tag '${gitTag}' does not match v${dependencies.VERSION}"
} else {
echo "Building release: '${gitTag}'"
setBuildName("Tag ${gitTag}")
}
}
targetSHA1 = 'NONE'
if (isPullRequest) {
targetSHA1 = sh(returnStdout: true, script: "git fetch origin && git merge-base origin/${targetBranch} HEAD").trim()
}
isCoreCronJob = isCronJob()
requireNightlyBuild = false
if (isCoreCronJob) {
requireNightlyBuild = isNightlyBuildNeeded()
}
}
currentBranch = env.BRANCH_NAME
println "Building branch: ${currentBranch}"
println "Target branch: ${targetBranch}"
releaseTesting = targetBranch.contains('release')
isMaster = currentBranch.contains('master')
longRunningTests = isMaster || currentBranch.contains('next-major')
isPublishingRun = false
if (gitTag) {
isPublishingRun = currentBranch.contains('release')
}
else if (isCoreCronJob && requireNightlyBuild) {
isPublishingRun = true
longRunningTests = true
def localDate = java.time.LocalDateTime.now().format(java.time.format.DateTimeFormatter.BASIC_ISO_DATE)
gitDescribeVersion = "v${dependencies.VERSION}-nightly-${localDate}"
}
echo "Pull request: ${isPullRequest ? 'yes' : 'no'}"
echo "Release Run: ${releaseTesting ? 'yes' : 'no'}"
echo "Publishing Run: ${isPublishingRun ? 'yes' : 'no'}"
echo "Is Realm cron job: ${isCoreCronJob ? 'yes' : 'no'}"
echo "Is nightly build: ${requireNightlyBuild ? 'yes' : 'no'}"
echo "Long running test: ${longRunningTests ? 'yes' : 'no'}"
if (isCoreCronJob && !requireNightlyBuild) {
currentBuild.result = 'ABORTED'
error 'Nightly build is not needed because there are no new commits to build'
}
if (isMaster) {
// If we're on master, instruct the docker image builds to push to the
// cache registry
env.DOCKER_PUSH = "1"
}
}
if (isPublishingRun) {
stage('BuildPackages') {
def buildOptions = [
enableSync: "ON",
runTests: false,
]
parallelExecutors = [
macOS : doBuildMacOs(buildOptions + [buildType: "Release"]),
catalyst : doBuildApplePlatform('maccatalyst', 'Release'),
xros : doBuildApplePlatformXcode15('xros', 'Release'),
xrsimulator: doBuildApplePlatformXcode15('xrsimulator', 'Release'),
]
androidAbis = ['armeabi-v7a', 'x86', 'x86_64', 'arm64-v8a']
for (abi in androidAbis) {
parallelExecutors["android-${abi}"] = doAndroidBuildInDocker(abi, 'Release')
}
appleSdks = ['iphoneos', 'iphonesimulator',
'appletvos', 'appletvsimulator',
'watchos', 'watchsimulator']
for (sdk in appleSdks) {
parallelExecutors[sdk] = doBuildApplePlatform(sdk, 'Release')
}
linuxBuildTypes = ['Debug', 'Release', 'RelAssert']
for (buildType in linuxBuildTypes) {
parallelExecutors["buildLinux${buildType}"] = doBuildLinux(buildType)
}
windowsPlatforms = ['Win32', 'x64', 'ARM64']
for (platform in windowsPlatforms) {
parallelExecutors["buildWindows-${platform}"] = doBuildWindows('Release', false, platform, false)
parallelExecutors["buildWindowsUniversal-${platform}"] = doBuildWindows('Release', true, platform, false)
}
parallelExecutors["buildWindowsUniversal-ARM"] = doBuildWindows('Release', true, 'ARM', false)
parallel parallelExecutors
}
stage('Aggregate Cocoa xcframeworks') {
rlmNode('osx') {
getArchive()
for (cocoaStash in cocoaStashes) {
unstash name: cocoaStash
}
sh "tools/build-cocoa.sh -v \"${gitDescribeVersion}\""
archiveArtifacts('realm-*.tar.xz')
stash includes: 'realm-*.tar.xz', name: "cocoa"
publishingStashes << "cocoa"
}
}
stage('Publish to S3') {
rlmNode('docker') {
deleteDir()
dir('temp') {
withAWS(credentials: 'tightdb-s3-ci', region: 'us-east-1') {
for (publishingStash in publishingStashes) {
dir(publishingStash) {
unstash name: publishingStash
def path = publishingStash.replaceAll('___', '/')
def files = findFiles(glob: '**')
for (file in files) {
s3Upload file: file.path, path: "downloads/core/${gitDescribeVersion}/${path}/${file.name}", bucket: 'static.realm.io'
}
}
}
}
}
}
}
}
else {
stage('Checking') {
def buildOptions = [
buildType : 'Debug',
maxBpNodeSize: 1000,
enableEncryption: true,
useEncryption: false,
enableSync: false,
runTests: true,
]
parallelExecutors = [
buildLinuxRelease : doBuildLinux('Release'),
checkAlpine : doCheckAlpine(buildOptions + [enableSync: true]),
checkLinuxDebug : doCheckInDocker(buildOptions + [useToolchain : true]),
checkLinuxDebugEncrypt : doCheckInDocker(buildOptions + [useEncryption : true]),
checkLinuxRelease_4 : doCheckInDocker(buildOptions + [maxBpNodeSize: 4, buildType : 'Release', useToolchain : true]),
checkLinuxDebug_Sync : doCheckInDocker(buildOptions + [enableSync: true, dumpChangesetTransform: true]),
checkLinuxDebugNoEncryp : doCheckInDocker(buildOptions + [enableEncryption: false]),
checkMacOsRelease_Sync : doBuildMacOs(buildOptions + [buildType: 'Release', enableSync: true]),
checkWindows_x86_Release: doBuildWindows('Release', false, 'Win32', true),
checkWindows_x64_Debug : doBuildWindows('Debug', false, 'x64', true),
buildUWP_x86_Release : doBuildWindows('Release', true, 'Win32', false),
buildWindows_ARM64_Debug: doBuildWindows('Debug', false, 'ARM64', false),
buildUWP_ARM64_Debug : doBuildWindows('Debug', true, 'ARM64', false),
checkiOSSimulator_Debug : doBuildApplePlatform('iphonesimulator', 'Debug', true),
buildAppleTV_Debug : doBuildApplePlatform('appletvos', 'Debug', false),
buildAndroidArm64Debug : doAndroidBuildInDocker('arm64-v8a', 'Debug'),
buildAndroidTestsArmeabi: doAndroidBuildInDocker('armeabi-v7a', 'Debug', TestAction.Build),
buildEmscripten : doBuildEmscripten('Debug'),
]
if (releaseTesting) {
extendedChecks = [
checkMacOsDebug : doBuildMacOs(buildOptions + [buildType: "Debug"]),
checkAndroidarmeabiDebug : doAndroidBuildInDocker('armeabi-v7a', 'Debug', TestAction.Run),
// FIXME: https://github.com/realm/realm-core/issues/4159
//checkAndroidx86Release : doAndroidBuildInDocker('x86', 'Release', TestAction.Run),
// FIXME: https://github.com/realm/realm-core/issues/4162
//coverage : doBuildCoverage(),
]
parallelExecutors.putAll(extendedChecks)
}
parallel parallelExecutors
}
}
}
def doCheckInDocker(Map options = [:]) {
def cmakeOptions = [
CMAKE_BUILD_TYPE: options.buildType,
REALM_MAX_BPNODE_SIZE: options.maxBpNodeSize,
REALM_ENABLE_ENCRYPTION: options.enableEncryption ? 'ON' : 'OFF',
REALM_ENABLE_SYNC: options.enableSync ? 'ON' : 'OFF',
]
if (longRunningTests) {
cmakeOptions << [
CMAKE_CXX_FLAGS: '"-DTEST_DURATION=1"',
]
}
def cmakeDefinitions = cmakeOptions.collect { k,v -> "-D$k=$v" }.join(' ')
return {
rlmNode('docker') {
getArchive()
def buildEnv = buildDockerEnv('linux.Dockerfile')
def environment = environment()
environment << 'UNITTEST_XML=unit-test-report.xml'
environment << "UNITTEST_SUITE_NAME=Linux-${options.buildType}"
if (options.useEncryption) {
environment << 'UNITTEST_ENCRYPT_ALL=1'
}
// We don't enable this by default, because using a toolchain with its own sysroot
// prevents CMake from finding system libraries like curl which we use in sync tests.
if (options.useToolchain) {
cmakeDefinitions += " -DCMAKE_TOOLCHAIN_FILE=\"${env.WORKSPACE}/tools/cmake/x86_64-linux-gnu.toolchain.cmake\""
}
def buildSteps = { String dockerArgs = "" ->
buildEnv.inside(dockerArgs) {
withEnv(environment) {
try {
dir('build-dir') {
sh "cmake ${cmakeDefinitions} -G Ninja .."
runAndCollectWarnings(
script: 'ninja',
name: "linux-${options.buildType}-encrypt${options.enableEncryption}-BPNODESIZE_${options.maxBpNodeSize}",
filters: warningFilters,
)
sh "${ctest_cmd}"
}
} finally {
junit testResults: 'build-dir/test/unit-test-report.xml'
}
}
}
}
buildSteps()
if (options.dumpChangesetTransform) {
buildEnv.inside {
dir('build-dir/test') {
withEnv([
'UNITTEST_PROGRESS=1',
'UNITTEST_FILTER=Array_Example Transform_* EmbeddedObjects_*',
'UNITTEST_DUMP_TRANSFORM=changeset_dump',
]) {
sh '''
./realm-sync-tests
tar -zcvf changeset_dump.tgz changeset_dump
'''
}
withAWS(credentials: 'stitch-sync-s3', region: 'us-east-1') {
retry(20) {
s3Upload file: 'changeset_dump.tgz', bucket: 'realm-test-artifacts', acl: 'PublicRead', path: "sync-transform-corpuses/${gitSha}/"
}
}
}
}
}
}
}
}
def doCheckAlpine(Map options = [:]) {
def cmakeOptions = [
CMAKE_BUILD_TYPE: options.buildType,
REALM_MAX_BPNODE_SIZE: options.maxBpNodeSize,
REALM_ENABLE_ENCRYPTION: options.enableEncryption ? 'ON' : 'OFF',
REALM_ENABLE_SYNC: options.enableSync ? 'ON' : 'OFF',
REALM_USE_SYSTEM_OPENSSL: 'ON',
OPENSSL_USE_STATIC_LIBS: 'OFF',
]
def cmakeDefinitions = cmakeOptions.collect { k,v -> "-D$k=$v" }.join(' ')
return {
rlmNode('docker') {
getArchive()
def buildEnv = buildDockerEnv('alpine.Dockerfile')
def environment = environment()
environment << 'UNITTEST_XML=unit-test-report.xml'
environment << "UNITTEST_SUITE_NAME=Alpine-${options.buildType}"
if (options.useEncryption) {
environment << 'UNITTEST_ENCRYPT_ALL=1'
}
// We don't enable this by default, because using a toolchain with its own sysroot
// prevents CMake from finding system libraries like curl which we use in sync tests.
if (options.useToolchain) {
cmakeDefinitions += " -DCMAKE_TOOLCHAIN_FILE=\"${env.WORKSPACE}/tools/cmake/x86_64-linux-musl.toolchain.cmake\""
}
buildEnv.inside {
withEnv(environment) {
try {
dir('build-dir') {
sh "cmake ${cmakeDefinitions} -G Ninja .."
runAndCollectWarnings(
script: 'ninja',
name: "alpine-${options.buildType}-encrypt${options.enableEncryption}-BPNODESIZE_${options.maxBpNodeSize}",
filters: warningFilters,
)
sh "${ctest_cmd}"
}
} finally {
junit testResults: 'build-dir/test/unit-test-report.xml'
}
}
}
}
}
}
def doBuildLinux(String buildType) {
return {
rlmNode('docker') {
getSourceArchive()
buildDockerEnv('linux.Dockerfile').inside {
sh """
rm -rf build-dir
mkdir build-dir
cd build-dir
cmake -DCMAKE_BUILD_TYPE=${buildType} -DCMAKE_TOOLCHAIN_FILE=../tools/cmake/x86_64-linux-gnu.toolchain.cmake -DREALM_NO_TESTS=1 -DREALM_VERSION="${gitDescribeVersion}" -G Ninja ..
ninja
cpack -G TGZ
"""
}
}
}
}
def doBuildLinuxClang(String buildType) {
return {
rlmNode('docker') {
getArchive()
def environment = environment() + [
'CC=clang',
'CXX=clang++'
]
buildDockerEnv('linux.Dockerfile').inside {
withEnv(environment) {
dir('build-dir') {
sh "cmake -D CMAKE_BUILD_TYPE=${buildType} -DREALM_NO_TESTS=1 -DREALM_VERSION=\"${gitDescribeVersion}\" -G Ninja .."
runAndCollectWarnings(
script: 'ninja',
parser: "clang",
name: "linux-clang-${buildType}",
filters: warningFilters,
)
sh 'cpack -G TGZ'
}
}
}
}
}
}
def doAndroidBuildInDocker(String abi, String buildType, TestAction test = TestAction.None) {
return {
rlmNode('docker') {
getArchive()
def stashName = "android___${abi}___${buildType}"
def buildDir = "build-${stashName}".replaceAll('___', '-')
def buildEnv = buildDockerEnv('android.Dockerfile')
def environment = environment()
environment << 'UNITTEST_XML=/data/local/tmp/unit-test-report.xml'
environment << 'UNITTEST_SUITE_NAME=android'
def cmakeArgs = ''
if (test == TestAction.None) {
cmakeArgs = '-DREALM_NO_TESTS=ON'
} else if (test.hasValue(TestAction.Build)) {
// TODO: should we build sync tests, too?
cmakeArgs = '-DREALM_ENABLE_SYNC=OFF -DREALM_FETCH_MISSING_DEPENDENCIES=ON -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON'
}
def doBuild = {
buildEnv.inside {
runAndCollectWarnings(
parser: 'clang',
script: "tools/cross_compile.sh -o android -a ${abi} -t ${buildType} -v ${gitDescribeVersion} -f \"${cmakeArgs}\"",
name: "android-armeabi-${abi}-${buildType}",
filters: warningFilters,
)
}
}
// if we want to run tests, let's spin up the emulator docker image first
// it takes a while to warm up so we might as build in the mean time
// otherwise, just run the build as is
if (test.hasValue(TestAction.Run)) {
docker.image('tracer0tong/android-emulator').withRun("-e ARCH=${abi}") { emulator ->
doBuild()
buildEnv.inside("--link ${emulator.id}:emulator") {
try {
sh """
cd ${buildDir}
adb connect emulator
timeout 30m adb wait-for-device
adb push test/realm-tests /data/local/tmp
adb push test/resources /data/local/tmp
adb shell 'cd /data/local/tmp; ${environment.join(' ')} ./realm-tests || echo __ADB_FAIL__' | tee adb.log
! grep __ADB_FAIL__ adb.log
"""
} finally {
sh 'adb pull /data/local/tmp/unit-test-report.xml'
junit testResults: 'unit-test-report.xml'
}
}
}
} else {
doBuild()
}
}
}
}
def doBuildWindows(String buildType, boolean isUWP, String platform, boolean runTests) {
def cpackSystemName = "${isUWP ? 'UWP' : 'Windows'}-${platform}"
def arch = platform.toLowerCase()
if (arch == 'win32') {
arch = 'x86'
}
if (arch == 'win64') {
arch = 'x64'
}
def triplet = "${arch}-${isUWP ? 'uwp' : 'windows'}-static"
def cmakeOptions = [
CMAKE_GENERATOR_PLATFORM: platform,
CMAKE_BUILD_TYPE: buildType,
REALM_ENABLE_SYNC: "ON",
CPACK_SYSTEM_NAME: cpackSystemName,
REALM_VERSION: gitDescribeVersion,
]
if (isUWP) {
cmakeOptions << [
CMAKE_SYSTEM_NAME: 'WindowsStore',
CMAKE_SYSTEM_VERSION: '10.0',
]
}
if (!runTests) {
cmakeOptions << [
REALM_NO_TESTS: '1',
]
} else {
cmakeOptions << [
VCPKG_MANIFEST_FEATURES: 'tests'
]
}
def cmakeDefinitions = cmakeOptions.collect { k,v -> "-D$k=$v" }.join(' ')
return {
rlmNode('windows') {
getArchive()
dir('build-dir') {
withAWS(credentials: 'tightdb-s3-ci', region: 'eu-west-1') {
withEnv(["VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg-binary-caches,readwrite"]) {
bat "\"${tool 'cmake'}\" ${cmakeDefinitions} .."
}
}
withEnv(["_MSPDBSRV_ENDPOINT_=${UUID.randomUUID().toString()}"]) {
runAndCollectWarnings(
parser: 'msbuild',
isWindows: true,
script: "\"${tool 'cmake'}\" --build . --config ${buildType}",
name: "windows-${platform}-${buildType}-${isUWP?'uwp':'nouwp'}",
filters: [excludeMessage('Publisher name .* does not match signing certificate subject'), excludeFile('query_flex.ll')] + warningFilters,
)
}
bat "\"${tool 'cmake'}\\..\\cpack.exe\" -C ${buildType} -D CPACK_GENERATOR=TGZ"
}
if (runTests && !isUWP) {
def prefix = "Windows-${platform}-${buildType}";
def environment = environment() + [ "TMP=${env.WORKSPACE}\\temp", 'UNITTEST_NO_ERROR_EXITCODE=1' ]
withEnv(environment + ["UNITTEST_XML=${WORKSPACE}\\core-results.xml", "UNITTEST_SUITE_NAME=${prefix}-core"]) {
dir("build-dir/test/${buildType}") {
bat '''
mkdir %TMP%
realm-tests.exe
rmdir /Q /S %TMP%
'''
}
}
if (arch == 'x86') {
// On 32-bit Windows we run out of address space when running
// the sync tests in parallel
environment << 'UNITTEST_THREADS=1'
}
withEnv(environment + ["UNITTEST_XML=${WORKSPACE}\\sync-results.xml", "UNITTEST_SUITE_NAME=${prefix}-sync"]) {
dir("build-dir/test/${buildType}") {
bat '''
mkdir %TMP%
realm-sync-tests.exe
rmdir /Q /S %TMP%
'''
}
}
withEnv(environment + ["UNITTEST_XML=${WORKSPACE}\\object-store-results.xml", "UNITTEST_SUITE_NAME=${prefix}-object-store"]) {
dir("build-dir/test/object-store/${buildType}") {
bat '''
mkdir %TMP%
realm-object-store-tests.exe
rmdir /Q /S %TMP%
'''
}
}
junit testResults: 'core-results.xml'
junit testResults: 'sync-results.xml'
junit testResults: 'object-store-results.xml'
}
}
}
}
def doBuildMacOs(Map options = [:]) {
def buildType = options.buildType;
def cmakeOptions = [
CMAKE_TOOLCHAIN_FILE: '$WORKSPACE/tools/cmake/xcode.toolchain.cmake',
CMAKE_SYSTEM_NAME: 'Darwin',
CPACK_SYSTEM_NAME: 'macosx',
CMAKE_OSX_ARCHITECTURES: 'x86_64;arm64',
CPACK_PACKAGE_DIRECTORY: '$WORKSPACE',
REALM_ENABLE_SYNC: options.enableSync,
REALM_VERSION: gitDescribeVersion
]
if (!options.runTests) {
cmakeOptions << [
REALM_BUILD_LIB_ONLY: 'ON',
]
}
if (longRunningTests) {
cmakeOptions << [
CMAKE_CXX_FLAGS: '-DTEST_DURATION=1',
]
}
def cmakeDefinitions = cmakeOptions.collect { k,v -> "-D$k=\"$v\"" }.join(' ')
return {
rlmNode('osx') {
getArchive()
dir('build-macosx') {
withEnv(['DEVELOPER_DIR=/Applications/Xcode-14.app/Contents/Developer/']) {
try {
sh "cmake ${cmakeDefinitions} -G Xcode .."
} catch(Exception e) {
archiveArtifacts '**/*'
}
runAndCollectWarnings(
parser: 'clang',
script: "cmake --build . --config ${buildType} --target package -- ONLY_ACTIVE_ARCH=NO -destination generic/name=macOS -sdk macosx",
name: "xcode-macosx-${buildType}",
filters: warningFilters,
)
}
}
withEnv(['DEVELOPER_DIR=/Applications/Xcode-14.app/Contents/Developer']) {
runAndCollectWarnings(
parser: 'clang',
script: 'xcrun swift build',
name: "swift-build-macosx-${buildType}",
filters: warningFilters,
)
sh 'xcrun swift run ObjectStoreTests'
}
String tarball = "realm-${buildType}-${gitDescribeVersion}-macosx-*.tar.gz"
archiveArtifacts tarball
def stashName = "macosx___${buildType}"
stash includes: tarball, name: stashName
cocoaStashes << stashName
publishingStashes << stashName
if (options.runTests) {
try {
def environment = environment()
environment << 'CTEST_OUTPUT_ON_FAILURE=1'
environment << "UNITTEST_XML=${WORKSPACE}/unit-test-report.xml"
environment << "UNITTEST_SUITE_NAME=macOS_${buildType}"
dir('build-macosx') {
withEnv(environment) {
sh "${ctest_cmd} -C ${buildType}"
}
}
} finally {
junit testResults: 'unit-test-report.xml'
}
}
}
}
}
def doBuildApplePlatform(String platform, String buildType, boolean test = false) {
return {
rlmNode('osx') {
getArchive()
withEnv(['DEVELOPER_DIR=/Applications/Xcode-14.app/Contents/Developer/']) {
sh "tools/build-apple-device.sh -p '${platform}' -c '${buildType}' -v '${gitDescribeVersion}'"
if (test) {
dir('build-xcode-platforms') {
if (platform != 'iphonesimulator') error 'Testing is only available for iOS Simulator'
sh "xcodebuild -scheme CombinedTests -configuration ${buildType} -sdk iphonesimulator -arch x86_64"
def env = environment().collect { v -> "SIMCTL_CHILD_${v}" }
def resultFile = "${WORKSPACE}/combined-test-report.xml"
withEnv(env + ["SIMCTL_CHILD_UNITTEST_XML=${resultFile}", "SIMCTL_CHILD_UNITTEST_SUITE_NAME=iOS-${buildType}-Core"]) {
sh "$WORKSPACE/tools/run-in-simulator.sh 'test/${buildType}-${platform}/realm-combined-tests.app' 'io.realm.CombinedTests' '${resultFile}'"
}
}
}
}
if (test) {
junit testResults: 'combined-test-report.xml'
}
String tarball = "realm-${buildType}-${gitDescribeVersion}-${platform}-devel.tar.gz";
archiveArtifacts tarball
def stashName = "${platform}___${buildType}"
stash includes: tarball, name: stashName
cocoaStashes << stashName
publishingStashes << stashName
}
}
}
def doBuildApplePlatformXcode15(String platform, String buildType) {
return {
rlmNode('macos_13') {
getArchive()
withEnv(['DEVELOPER_DIR=/Applications/Xcode-15.app/Contents/Developer/']) {
sh "tools/build-apple-device.sh -p '${platform}' -c '${buildType}' -v '${gitDescribeVersion}'"
}
String tarball = "realm-${buildType}-${gitDescribeVersion}-${platform}-devel.tar.gz";
archiveArtifacts tarball
def stashName = "${platform}___${buildType}"
stash includes: tarball, name: stashName
cocoaStashes << stashName
publishingStashes << stashName
}
}
}
def doBuildEmscripten(String buildType) {
return {
rlmNode('docker') {
getArchive()
docker.image('emscripten/emsdk:3.1.37').inside {
dir('build') {
sh "emcmake cmake .. -DCMAKE_BUILD_TYPE=${buildType}"
runAndCollectWarnings(
parser: 'clang',
script: 'make -j$(nproc) 2>&1',
name: "emscripten-${buildType}",
filters: warningFilters,
)
}
}
}
}
}
def doBuildCoverage() {
return {
rlmNode('docker') {
getArchive()
buildDockerEnv('linux.Dockerfile').inside {
sh '''
mkdir build
cd build
cmake -G Ninja -D REALM_COVERAGE=ON ..
ninja
cd ..
lcov --no-external --capture --initial --directory . --output-file $WORKSPACE/coverage-base.info
cd build/test
ulimit -c unlimited
UNITTEST_PROGRESS=1 ./realm-tests
cd ../..
lcov --no-external --directory . --capture --output-file $WORKSPACE/coverage-test.info
lcov --add-tracefile $WORKSPACE/coverage-base.info --add-tracefile coverage-test.info --output-file $WORKSPACE/coverage-total.info
lcov --remove $WORKSPACE/coverage-total.info '/usr/*' '$WORKSPACE/test/*' --output-file $WORKSPACE/coverage-filtered.info
rm coverage-base.info coverage-test.info coverage-total.info
'''
withCredentials([[$class: 'StringBinding', credentialsId: 'codecov-token-core', variable: 'CODECOV_TOKEN']]) {
sh 'curl -s https://codecov.io/bash | bash'
}
}
}
}
}
def environment() {
return [
"UNITTEST_SHUFFLE=1",
"UNITTEST_PROGRESS=1"
]
}
def readGitTag() {
def command = 'git describe --exact-match --tags HEAD'
def returnStatus = sh(returnStatus: true, script: command)
if (returnStatus != 0) {
return null
}
return sh(returnStdout: true, script: command).trim()
}
def isCronJob() {
def upstreams = currentBuild.getUpstreamBuilds()
for(upstream in upstreams) {
def upstreamProjectName = upstream.getFullProjectName()
def isRealmCronBuild = upstreamProjectName == 'realm-core-cron'
if (isRealmCronBuild)
return true;
}
return false;
}
def isNightlyBuildNeeded() {
def command = 'git log -1 --format=%cI'
def lastCommitTime = sh(returnStdout: true, script:command).trim()
def current_dt = java.time.LocalDateTime.now()
def last_commit_dt = java.time.LocalDateTime.parse(lastCommitTime, java.time.format.DateTimeFormatter.ISO_DATE_TIME)
echo "Last Commit Time: ${last_commit_dt}"
return current_dt.getDayOfYear() - last_commit_dt.getDayOfYear() <= 1;
}
def setBuildName(newBuildName) {
currentBuild.displayName = "${currentBuild.displayName} - ${newBuildName}"
}
def getArchive() {
deleteDir()
unstash 'core-source'
// If the current node's clock is behind the clock of the node that stashed the sources originally
// the CMake generated files will always be out-of-date compared to the source files,
// which can lead Ninja into a loop.
// Touching all source files to reset their timestamp relative to the current node works around that.
if (isUnix()) {
sh 'find . -type f -exec touch {} +'
} else {
powershell 'Get-ChildItem . * -recurse | ForEach-Object{$_.LastWriteTime = get-date}'
}
}
def getSourceArchive() {
checkout(
[
$class : 'GitSCM',
branches : scm.branches,
gitTool : 'native git',
extensions : scm.extensions + [[$class: 'CleanCheckout'], [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
[$class: 'SubmoduleOption', disableSubmodules: false, parentCredentials: false, recursiveSubmodules: true,
reference: '', trackingSubmodules: false]],
userRemoteConfigs: scm.userRemoteConfigs
]
)
}
def buildDockerEnv(String dockerfile = 'Dockerfile', String extraArgs = '') {
def buildEnv
docker.withRegistry('https://ghcr.io', 'github-packages-token') {
buildEnv = docker.build("ci/realm-core:${dockerfile}", ". -f ${dockerfile} ${extraArgs}")
}
return buildEnv
}
enum TestAction {
None(0x0),
Build(0x1),
Run(0x3); // build and run
private final long value;
TestAction(long value) {
this.value = value;
}
public boolean hasValue(TestAction value) {
return (this.value & value.value) == value.value;
}
}