Gradle tests: Temporary disable NativePlatformLibsIT for Windows
This test causes a build timeouts on CI which cannot be reproduced locally. So we disable them to not block the testing process until a proper fix is found.
This commit is contained in:
committed by
Ilya Matveev
parent
3ef760604b
commit
c2e0cd60d7
+11
@@ -12,10 +12,21 @@ import org.jetbrains.kotlin.konan.target.KonanTarget
|
||||
import org.jetbrains.kotlin.konan.target.presetName
|
||||
import org.jetbrains.kotlin.konan.util.DependencyDirectories
|
||||
import org.junit.Assume
|
||||
import org.junit.BeforeClass
|
||||
import org.junit.Test
|
||||
|
||||
class NativePlatformLibsIT : BaseGradleIT() {
|
||||
|
||||
companion object {
|
||||
@BeforeClass
|
||||
@JvmStatic
|
||||
fun skipOnWindows() {
|
||||
// This test class causes build timeouts on Windows CI machines.
|
||||
// We temporary disable it for windows until a proper fix is found.
|
||||
Assume.assumeFalse(HostManager.hostIsMingw)
|
||||
}
|
||||
}
|
||||
|
||||
override val defaultGradleVersion: GradleVersionRequired
|
||||
get() = GradleVersionRequired.FOR_MPP_SUPPORT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user