[stdlib-mpp] Disable test retries for MPP libraries

Not compatible with org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
executer.

#KT-56106
This commit is contained in:
Ilya Gorbunov
2022-02-07 17:03:06 +01:00
committed by Space Team
parent 9bdd365be4
commit 79d5c87f30
2 changed files with 9 additions and 2 deletions
+5
View File
@@ -356,6 +356,11 @@ val coreLibProjects by extra {
":kotlin-reflect"
)
}
val mppProjects by extra {
listOf(
":kotlin-stdlib-mpp",
)
}
val projectsWithEnabledContextReceivers by extra {
listOf(
@@ -294,8 +294,10 @@ fun Project.configureTests() {
// Aggregate task for build related checks
tasks.register("checkBuild")
configureTestRetriesForTestTasks()
val mppProjects: List<String> by rootProject.extra
if (path !in mppProjects) {
configureTestRetriesForTestTasks()
}
}
// TODO: migrate remaining modules to the new JVM default scheme.