Skip to content

Commit 2bb9afb

Browse files
committed
Disable tests on native
1 parent fc6e875 commit 2bb9afb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

core/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeTest
2+
13
plugins {
24
id("kotlin-multiplatform")
35
`maven-publish`
@@ -108,4 +110,9 @@ tasks {
108110
maxHeapSize = "1024m"
109111
executable = "$JDK_6/bin/java"
110112
}
113+
114+
withType<KotlinNativeTest>() {
115+
// disable all Kotlin/Native tests: very long running
116+
enabled = false
117+
}
111118
}

0 commit comments

Comments
 (0)