Skip browser tests, and remove mingwX86

This commit is contained in:
Ugljesa Jovanovic 2020-05-16 21:49:16 +02:00 committed by Ugljesa Jovanovic
parent 04955effe7
commit 744254aa88
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F

View File

@ -84,11 +84,12 @@ kotlin {
}
}
browser {
testTask {
useKarma {
useChrome()
}
}
//Until I figure out how to run headless chrome on travis
// testTask {
// useKarma {
// useChrome()
// }
// }
}
nodejs {
testTask {
@ -143,14 +144,14 @@ kotlin {
}
}
}
mingwX86() {
binaries {
staticLib {
}
}
}
// No coroutines support for mingwX86
// mingwX86() {
// binaries {
// staticLib {
//
// }
// }
// }
linuxArm32Hfp() {
binaries {
@ -274,18 +275,18 @@ kotlin {
val linuxTest by getting {
dependsOn(nativeTest)
}
// Coroutines don't support mingwx86 yet
// val mingwX86Main by getting {
// dependsOn(commonMain)
// dependencies {
// implementation(Deps.Native.coroutines)
// }
// }
val mingwX86Main by getting {
dependsOn(commonMain)
dependencies {
implementation(Deps.Native.coroutines)
}
}
val mingwX86Test by getting {
dependsOn(commonTest)
}
// val mingwX86Test by getting {
// dependsOn(commonTest)
// }
//
val mingwX64Main by getting {
dependsOn(commonMain)
dependencies {