Skip to content

Commit

Permalink
Update integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed May 4, 2023
1 parent 3537f52 commit 44fcaff
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dokka_it_kotlin_version=1.8.10
dokka_it_android_gradle_plugin_version=4.0.0
dokka_it_android_gradle_plugin_version=4.1.3
android.useAndroidX=true
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ kotlin {
}
named("commonMain") {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
if (properties["dokka_it_kotlin_version"] in listOf("1.4.32", "1.5.31"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
else
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class SequentialTasksExecutionStressTest(override val versions: BuildVersions) :
"--info",
"--stacktrace",
"-Ptask_number=100",
jvmArgs = listOf("-Xmx1G", "-XX:MaxMetaspaceSize=350m")
jvmArgs = listOf("-Xmx1G", "-XX:MaxMetaspaceSize=400m")
).buildRelaxed()

assertEquals(TaskOutcome.SUCCESS, assertNotNull(result.task(":runTasks")).outcome)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package org.jetbrains.dokka.it.gradle

internal object TestedVersions {

val LATEST = BuildVersions("7.4.2", "1.8.10")
val LATEST = BuildVersions("7.4.2", "1.8.20")

/**
* All supported Gradle/Kotlin versions, including [LATEST]
Expand Down Expand Up @@ -46,5 +46,6 @@ internal object TestedVersions {
"1.7.20" to "18.2.0-pre.391",
"1.8.0" to "18.2.0-pre.467",
"1.8.10" to "18.2.0-pre.490",
"1.8.20" to "18.2.0-pre.546"
)
}

0 comments on commit 44fcaff

Please sign in to comment.