Skip to content

Commit 140dc21

Browse files
authoredNov 15, 2023
Metric overhaul (#1504)
1 parent ccd8ae9 commit 140dc21

File tree

120 files changed

+4537
-449
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+4537
-449
lines changed
 

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ GET requests. (Issue [#1517](https://github.com/realm/realm-kotlin/pull/1517))
8686
* File format: Generates Realms with file format v23.
8787
* Realm Studio 13.0.0 or above is required to open Realms created by this version.
8888
* This release is compatible with the following Kotlin releases:
89-
* Kotlin 1.8.0 and above. The K2 compiler is not supported yet.
89+
* Kotlin 1.8.20 and above. The K2 compiler is not supported yet.
9090
* Ktor 2.1.2 and above.
9191
* Coroutines 1.7.0 and above.
9292
* AtomicFu 0.18.3 and above.

‎Jenkinsfile

+11-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,11 @@ pipeline {
8484
ANDROID_NDK="${NDK_HOME}"
8585
ANDROID_NDK_HOME="${NDK_HOME}"
8686
REALM_DISABLE_ANALYTICS=true
87+
REALM_PRINT_ANALYTICS=true
88+
REALM_FAIL_ON_ANALYTICS_ERRORS=false
8789
JAVA_8='/Library/Java/JavaVirtualMachines/jdk1.8.0_301.jdk/Contents/Home'
8890
JAVA_11='/Library/Java/JavaVirtualMachines/jdk-11.0.12.jdk/Contents/Home'
91+
JAVA_17='/Library/Java/JavaVirtualMachines/jdk-17.0.2.jdk/Contents/Home'
8992
JAVA_HOME="${JAVA_11}"
9093
}
9194
stages {
@@ -246,8 +249,14 @@ pipeline {
246249
stage('Gradle Plugin Integration Tests') {
247250
when { expression { runTests } }
248251
steps {
249-
testAndCollect("integration-tests/gradle-plugin-test", "integrationTest")
250-
testAndCollect("integration-tests/gradle-plugin-test", "-Pkotlin.experimental.tryK2=true integrationTest")
252+
testAndCollect("integration-tests/gradle/current", "integrationTest")
253+
testAndCollect("integration-tests/gradle/current", "-Pkotlin.experimental.tryK2=true integrationTest")
254+
testAndCollect("integration-tests/gradle/gradle6-test", "integrationTest")
255+
testAndCollect("integration-tests/gradle/gradle71-test", "integrationTest")
256+
testAndCollect("integration-tests/gradle/gradle75-test", "integrationTest")
257+
withEnv(["JAVA_HOME=${JAVA_17}"]) {
258+
testAndCollect("integration-tests/gradle/gradle8-test", "integrationTest")
259+
}
251260
}
252261
}
253262
stage('Tests Android Sample App') {

0 commit comments

Comments
 (0)
Please sign in to comment.