forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
507 lines (461 loc) · 20.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
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
#!groovy
@Library('realm-ci') _
import groovy.json.JsonOutput
// CONSTANTS
// Branches from which we release SNAPSHOT's. Only release branches need to run on actual hardware.
releaseBranches = ['master', 'next-major', 'support-new-datatypes', 'releases']
// Branches that are "important", so if they do not compile they will generate a Slack notification
slackNotificationBranches = [ 'master', 'releases', 'next-major', 'support-new-datatypes' ]
// WARNING: Only set to `false` as an absolute last resort. Doing this will disable all integration
// tests.
enableIntegrationTests = true
// RUNTIME PROPERTIES
// Will store whether or not this build was successful.
buildSuccess = false
// Will be set to `true` if this build is a full release that should be available on Maven Central.
// This is determined by comparing the current git tag to the version number of the build.
publishBuild = false
mongoDbRealmContainer = null
mongoDbRealmCommandServerContainer = null
emulatorContainer = null
dockerNetworkId = UUID.randomUUID().toString()
currentBranch = (env.CHANGE_BRANCH == null) ? env.BRANCH_NAME : env.CHANGE_BRANCH
isReleaseBranch = releaseBranches.contains(currentBranch)
// FIXME: Always used the emulator until we can enable more reliable devices
// 'android' nodes have android devices attached and 'brix' are physical machines in Copenhagen.
// nodeSelector = (releaseBranches.contains(currentBranch)) ? 'android' : 'docker-cph-03' // Switch to `brix` when all CPH nodes work: https://jira.mongodb.org/browse/RCI-14
nodeSelector = 'docker-cph-03'
try {
node(nodeSelector) {
timeout(time: 150, unit: 'MINUTES') {
// Allocate a custom workspace to avoid having % in the path (it breaks ld)
ws('/tmp/realm-java') {
stage('SCM') {
checkout([
$class : 'GitSCM',
branches : scm.branches,
gitTool : 'native git',
extensions : scm.extensions + [
[$class: 'CleanCheckout'],
[$class: 'SubmoduleOption', recursiveSubmodules: true]
],
userRemoteConfigs: scm.userRemoteConfigs
])
}
// Check type of Build. We are treating this as a release build if we are building
// the exact Git SHA that was tagged.
echo "Building from branch: $currentBranch"
gitTag = readGitTag()
echo "Git tag: ${gitTag ?: 'none'}"
if (!gitTag) {
gitSha = sh(returnStdout: true, script: 'git rev-parse HEAD').trim().take(8)
echo "Building non-release: ${gitSha}"
setBuildName(gitSha)
publishBuild = false
} else {
def version = readFile('version.txt').trim()
if (gitTag != "v${version}") {
error "Git tag '${gitTag}' does not match v${version}"
} else {
echo "Building release: '${gitTag}'"
setBuildName("Tag ${gitTag}")
sh """
set +x
sh tools/publish_release.sh verify
"""
publishBuild = true
}
}
// Toggles for PR vs. Master builds.
// - For PR's, we favor speed > absolute correctness. So we just build for x86, use an
// emulator and run unit tests for the ObjectServer variant.
// - For branches from which we make releases, we build all architectures and run tests
// on an actual device.
def useEmulator = false
def emulatorImage = ""
def buildFlags = ""
def instrumentationTestTarget = "connectedAndroidTest"
def deviceSerial = ""
if (!isReleaseBranch) {
// Build development branch
useEmulator = true
emulatorImage = "system-images;android-29;default;x86"
// Build core from source instead of doing it from binary
buildFlags = "-PbuildTargetABIs=x86 -PenableLTO=false -PbuildCore=true"
instrumentationTestTarget = "connectedObjectServerDebugAndroidTest"
deviceSerial = "emulator-5554"
} else {
// Build main/release branch
// FIXME: Use emulator until we can get reliable devices on CI.
// But still build all ABI's and run all types of tests.
useEmulator = true
emulatorImage = "system-images;android-29;default;x86"
buildFlags = "-PenableLTO=true -PbuildCore=true"
instrumentationTestTarget = "connectedAndroidTest"
deviceSerial = "emulator-5554"
}
try {
def buildEnv = null
stage('Prepare Docker Images') {
// TODO Caching is currently disabled (with -do-not-cache suffix) due to the upload speed
// in Copenhagen being too slow. So the upload times out.
buildEnv = buildDockerEnv("ci/realm-java:master", push: currentBranch == 'master-do-not-cache')
def props = readProperties file: 'dependencies.list'
echo "Version in dependencies.list: ${props.MONGODB_REALM_SERVER}"
def mdbRealmImage = docker.image("docker.pkg.github.com/realm/ci/mongodb-realm-test-server:${props.MONGODB_REALM_SERVER}")
docker.withRegistry('https://docker.pkg.github.com', 'github-packages-token') {
mdbRealmImage.pull()
}
def commandServerEnv = docker.build 'mongodb-realm-command-server', "tools/sync_test_server"
// Prepare Docker containers used by Instrumentation tests
// TODO: How much of this logic can be moved to start_server.sh for shared logic with local testing.
withCredentials([
[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'realm-kotlin-baas-aws-credentials', accessKeyVariable: 'BAAS_AWS_ACCESS_KEY_ID', secretKeyVariable: 'BAAS_AWS_SECRET_ACCESS_KEY']
]) {
def tempDir = runCommand('mktemp -d -t app_config.XXXXXXXXXX')
sh "tools/sync_test_server/app_config_generator.sh ${tempDir} tools/sync_test_server/app_template partition testapp1 testapp2"
sh "tools/sync_test_server/app_config_generator.sh ${tempDir} tools/sync_test_server/app_template flex testapp3"
sh "docker network create ${dockerNetworkId}"
mongoDbRealmContainer = mdbRealmImage.run("--network ${dockerNetworkId} -v$tempDir:/apps -e AWS_ACCESS_KEY_ID='$BAAS_AWS_ACCESS_KEY_ID' -e AWS_SECRET_ACCESS_KEY='$BAAS_AWS_SECRET_ACCESS_KEY'")
mongoDbRealmCommandServerContainer = commandServerEnv.run("--network container:${mongoDbRealmContainer.id} -v$tempDir:/apps")
sh "timeout 60 sh -c \"while [[ ! -f $tempDir/testapp1/app_id || ! -f $tempDir/testapp2/app_id ]]; do echo 'Waiting for server to start'; sleep 1; done\""
}
}
// There is a chance that real devices are attached to the host, so if the emulator is
// running we need to make sure that ADB and tests targets the correct device.
String restrictDevice = ""
if (deviceSerial != null) {
restrictDevice = "-e ANDROID_SERIAL=${deviceSerial} "
}
buildEnv.inside("-e HOME=/tmp " +
"-e _JAVA_OPTIONS=-Duser.home=/tmp " +
"--privileged " +
"-v /dev/kvm:/dev/kvm " +
"-v /dev/bus/usb:/dev/bus/usb " +
"-v ${env.HOME}/gradle-cache:/tmp/.gradle " +
"-v ${env.HOME}/.android:/tmp/.android " +
"-v ${env.HOME}/ccache:/tmp/.ccache " +
restrictDevice +
"-e REALM_CORE_DOWNLOAD_DIR=/tmp/.gradle " +
"--network container:${mongoDbRealmContainer.id} ") {
// Lock required around all usages of Gradle as it isn't
// able to share its cache between builds.
lock("${env.NODE_NAME}-android") {
if (useEmulator) {
// TODO: We should wait until the emulator is online. For now assume it starts fast enough
// before the tests will run, since the library needs to build first.
sh """yes '\n' | avdmanager create avd -n CIEmulator -k '${emulatorImage}' --force"""
sh "adb start-server" // https://stackoverflow.com/questions/56198290/problems-with-adb-exe
// Need to go to ANDROID_HOME due to https://askubuntu.com/questions/1005944/emulator-avd-does-not-launch-the-virtual-device
sh "cd \$ANDROID_HOME/tools && emulator -avd CIEmulator -no-boot-anim -no-window -wipe-data -noaudio -partition-size 4098 &"
try {
runBuild(buildFlags, instrumentationTestTarget)
} finally {
sh "adb emu kill"
}
} else {
runBuild(buildFlags, instrumentationTestTarget)
}
// Release the library if needed
if (publishBuild) {
runPublish()
}
}
}
} finally {
// We assume that creating these containers and the docker network can be considered an atomic operation.
if (mongoDbRealmContainer != null && mongoDbRealmCommandServerContainer != null) {
archiveServerLogs(mongoDbRealmContainer.id, mongoDbRealmCommandServerContainer.id)
mongoDbRealmContainer.stop()
mongoDbRealmCommandServerContainer.stop()
sh "docker network rm ${dockerNetworkId}"
}
if (emulatorContainer != null) {
emulatorContainer.stop()
}
}
}
}
currentBuild.rawBuild.setResult(Result.SUCCESS)
buildSuccess = true
}
} catch(Exception e) {
currentBuild.rawBuild.setResult(Result.FAILURE)
buildSuccess = false
throw e
} finally {
if (slackNotificationBranches.contains(currentBranch)) {
node {
withCredentials([[$class: 'StringBinding', credentialsId: 'slack-webhook-java-ci-channel', variable: 'SLACK_URL']]) {
def payload = null
if (!buildSuccess) {
payload = JsonOutput.toJson([
username: "Realm CI",
icon_emoji: ":realm_new:",
text: "*The ${currentBranch} branch is broken!*\n<${env.BUILD_URL}|Click here> to check the build."
])
} else if (currentBuild.getPreviousBuild() && currentBuild.getPreviousBuild().getResult().toString() != "SUCCESS" && buildSuccess) {
payload = JsonOutput.toJson([
username: "Realm CI",
icon_emoji: ":realm_new:",
text: "*${currentBranch} is back to normal!*\n<${env.BUILD_URL}|Click here> to check the build."
])
}
if (payload != null) {
sh "curl -X POST --data-urlencode \'payload=${payload}\' ${env.SLACK_URL}"
}
}
}
}
}
// Runs all build steps
def runBuild(buildFlags, instrumentationTestTarget) {
stage('Build') {
withCredentials([
[$class: 'StringBinding', credentialsId: 'maven-central-java-ring-file', variable: 'SIGN_KEY'],
[$class: 'StringBinding', credentialsId: 'maven-central-java-ring-file-password', variable: 'SIGN_KEY_PASSWORD'],
]) {
sh "chmod +x gradlew"
def signingFlags = ""
if (isReleaseBranch) {
signingFlags = "-PsignBuild=true -PsignSecretRingFile=\"${SIGN_KEY}\" -PsignPassword=${SIGN_KEY_PASSWORD}"
}
sh "./gradlew assemble ${buildFlags} ${signingFlags} --stacktrace"
}
}
stage('Tests') {
parallel 'JVM' : {
try {
sh "chmod +x gradlew && ./gradlew check ${buildFlags} --stacktrace"
} finally {
storeJunitResults 'realm/realm-annotations-processor/build/test-results/test/TEST-*.xml'
storeJunitResults 'examples/unitTestExample/build/test-results/**/TEST-*.xml'
storeJunitResults 'realm/realm-library/build/test-results/**/TEST-*.xml'
step([$class: 'LintPublisher'])
}
},
// FIXME https://github.com/realm/realm-java/issues/7593
// 'JVM8 introExample check' : {
// // Force build with JVM8, by disabling the cache, and check introExample.
// sh """
// cd examples/moduleExample
// JAVA_HOME=\$JAVA8_HOME ../gradlew check ${buildFlags} --stacktrace
// """
// },
'Realm Transformer' : {
try {
gradle('realm-transformer', 'check')
} finally {
storeJunitResults 'realm-transformer/build/test-results/test/TEST-*.xml'
}
},
// 'Static code analysis' : {
// try {
// gradle('realm', "spotbugsMain pmd checkstyle ${buildFlags}")
// } finally {
// publishHTML(target: [
// allowMissing: false,
// alwaysLinkToLastBuild: false,
// keepAll: true,
// reportDir: 'realm/realm-library/build/reports/spotbugs',
// reportFiles: 'main.html',
// reportName: 'Spotbugs report'
// ])
// publishHTML(target: [
// allowMissing: false,
// alwaysLinkToLastBuild: false,
// keepAll: true,
// reportDir: 'realm/realm-library/build/reports/pmd',
// reportFiles: 'pmd.html',
// reportName: 'PMD report'
// ])
// publishHTML(target: [
// allowMissing: false,
// alwaysLinkToLastBuild: false,
// keepAll: true,
// reportDir: 'realm/realm-library/build/reports/checkstyle',
// reportFiles: 'checkstyle.html',
// reportName: 'Checkstyle report'
// ])
// }
// },
'Gradle Plugin' : {
try {
gradle('gradle-plugin', 'check')
} finally {
storeJunitResults 'gradle-plugin/build/test-results/test/TEST-*.xml'
}
},
'JavaDoc': {
sh "./gradlew javadoc ${buildFlags} --stacktrace"
}
}
stage('Device Tests') {
if (enableIntegrationTests) {
String backgroundPid
try {
backgroundPid = startLogCatCollector()
forwardAdbPorts()
gradle('realm', "${instrumentationTestTarget} ${buildFlags}")
} finally {
stopLogCatCollector(backgroundPid)
storeJunitResults 'realm/realm-library/build/outputs/androidTest-results/connected/**/TEST-*.xml'
storeJunitResults 'realm/kotlin-extensions/build/outputs/androidTest-results/connected/**/TEST-*.xml'
}
} else {
echo "Instrumentation tests were disabled."
}
}
// TODO: add support for running monkey on the example apps
def collectMetrics = ['master'].contains(currentBranch)
echo "Collecting metrics: $collectMetrics"
if (collectMetrics) {
stage('Collect metrics') {
collectAarMetrics()
}
}
echo "Releasing SNAPSHOT: ($isReleaseBranch, $publishBuild)"
if (isReleaseBranch && !publishBuild) {
stage('Publish SNAPSHOT') {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'maven-central-credentials', passwordVariable: 'MAVEN_CENTRAL_PASSWORD', usernameVariable: 'MAVEN_CENTRAL_USER']]) {
sh "chmod +x gradlew && ./gradlew mavenCentralUpload ${buildFlags} -PossrhUsername='$MAVEN_CENTRAL_USER' -PossrhPassword='$MAVEN_CENTRAL_PASSWORD' --stacktrace"
}
}
}
}
def runPublish() {
stage('Publish Release') {
withCredentials([
[$class: 'StringBinding', credentialsId: 'maven-central-java-ring-file', variable: 'SIGN_KEY'],
[$class: 'StringBinding', credentialsId: 'maven-central-java-ring-file-password', variable: 'SIGN_KEY_PASSWORD'],
[$class: 'StringBinding', credentialsId: 'slack-webhook-java-ci-channel', variable: 'SLACK_URL_CI'],
[$class: 'StringBinding', credentialsId: 'slack-webhook-releases-channel', variable: 'SLACK_URL_RELEASE'],
[$class: 'UsernamePasswordMultiBinding', credentialsId: 'maven-central-credentials', passwordVariable: 'MAVEN_CENTRAL_PASSWORD', usernameVariable: 'MAVEN_CENTRAL_USER'],
[$class: 'AmazonWebServicesCredentialsBinding', accessKeyVariable: 'DOCS_S3_ACCESS_KEY', credentialsId: 'mongodb-realm-docs-s3', secretKeyVariable: 'DOCS_S3_SECRET_KEY'],
[$class: 'AmazonWebServicesCredentialsBinding', accessKeyVariable: 'REALM_S3_ACCESS_KEY', credentialsId: 'realm-s3', secretKeyVariable: 'REALM_S3_SECRET_KEY']
]) {
// TODO Make sure that buildFlags and signingFlags are unified across builds
sh """
set +x
sh tools/publish_release.sh '$MAVEN_CENTRAL_USER' '$MAVEN_CENTRAL_PASSWORD' \
'$REALM_S3_ACCESS_KEY' '$REALM_S3_SECRET_KEY' \
'$DOCS_S3_ACCESS_KEY' '$DOCS_S3_SECRET_KEY' \
'$SLACK_URL_RELEASE' '$SLACK_URL_CI' \
'-PsignBuild=true -PsignSecretRingFile="${SIGN_KEY}" -PsignPassword=${SIGN_KEY_PASSWORD} -PenableLTO=true -PbuildCore=true'
"""
}
}
}
def forwardAdbPorts() {
sh """ adb reverse tcp:9080 tcp:9080 && adb reverse tcp:9443 tcp:9443 &&
adb reverse tcp:8888 tcp:8888 && adb reverse tcp:9090 tcp:9090
"""
}
String startLogCatCollector() {
// Cancel build quickly if no device is available. The lock acquired already should
// ensure we have access to a device. If not, it is most likely a more severe problem.
timeout(time: 1, unit: 'MINUTES') {
// Need ADB as root to clear all buffers: https://stackoverflow.com/a/47686978/1389357
sh 'adb devices'
sh """adb root
adb logcat -b all -c
adb logcat -v time > 'logcat.txt' &
echo \$! > pid
"""
return readFile("pid").trim()
}
}
def stopLogCatCollector(String backgroundPid) {
// The pid might not be available if the build was terminated early or stopped due to
// a build error.
if (backgroundPid != null) {
sh "kill ${backgroundPid}"
zip([
'zipFile': 'logcat.zip',
'archive': true,
'glob' : 'logcat.txt'
])
sh 'rm logcat.txt'
}
}
def archiveServerLogs(String mongoDbRealmContainerId, String commandServerContainerId) {
sh "docker logs ${commandServerContainerId} > ./command-server.log"
zip([
'zipFile': 'command-server-log.zip',
'archive': true,
'glob' : 'command-server.log'
])
sh 'rm command-server.log'
sh "docker cp ${mongoDbRealmContainerId}:/var/log/stitch.log ./stitch.log"
zip([
'zipFile': 'stitchlog.zip',
'archive': true,
'glob' : 'stitch.log'
])
sh 'rm stitch.log'
sh "docker cp ${mongoDbRealmContainerId}:/var/log/mongodb.log ./mongodb.log"
zip([
'zipFile': 'mongodb.zip',
'archive': true,
'glob' : 'mongodb.log'
])
sh 'rm mongodb.log'
}
def sendMetrics(String metricName, String metricValue, Map<String, String> tags) {
def tagsString = getTagsString(tags)
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: '5b8ad2d9-61a4-43b5-b4df-b8ff6b1f16fa', passwordVariable: 'influx_pass', usernameVariable: 'influx_user']]) {
sh "curl -i -XPOST 'https://influxdb.realmlab.net/write?db=realm' --data-binary '${metricName},${tagsString} value=${metricValue}i' --user '${env.influx_user}:${env.influx_pass}'"
}
}
@NonCPS
def getTagsString(Map<String, String> tags) {
return tags.collect { k,v -> "$k=$v" }.join(',')
}
def storeJunitResults(String path) {
step([
$class: 'JUnitResultArchiver',
allowEmptyResults: true,
testResults: path
])
}
def collectAarMetrics() {
def flavors = ['base', 'objectServer']
for (def i = 0; i < flavors.size(); i++) {
def flavor = flavors[i]
sh """set -xe
cd realm/realm-library/build/outputs/aar
unzip realm-android-library-${flavor}-release.aar -d unzipped${flavor}
find \$ANDROID_HOME -name d8 | sort -r | head -n 1 > d8
\$(cat d8) --release --output ./unzipped${flavor} unzipped${flavor}/classes.jar
cat ./unzipped${flavor}/temp${flavor}.dex | head -c 92 | tail -c 4 | hexdump -e '1/4 \"%d\"' > methods${flavor}
"""
def methods = readFile("realm/realm-library/build/outputs/aar/methods${flavor}")
sendMetrics('methods', methods, ['flavor':flavor])
def aarFile = findFiles(glob: "realm/realm-library/build/outputs/aar/realm-android-library-${flavor}-release.aar")[0]
sendMetrics('aar_size', aarFile.length as String, ['flavor':flavor])
def soFiles = findFiles(glob: "realm/realm-library/build/outputs/aar/unzipped${flavor}/jni/*/librealm-jni.so")
for (def j = 0; j < soFiles.size(); j++) {
def soFile = soFiles[j]
def abiName = soFile.path.tokenize('/')[-2]
def libSize = soFile.length as String
sendMetrics('abi_size', libSize, ['flavor':flavor, 'type':abiName])
}
}
}
def gradle(String commands) {
sh "chmod +x gradlew && ./gradlew ${commands} --stacktrace"
}
def gradle(String relativePath, String commands) {
sh "cd ${relativePath} && chmod +x gradlew && ./gradlew ${commands} --stacktrace"
}
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 runCommand(String command){
return sh(script: command, returnStdout: true).trim()
}