Mikolaj
07/09/2024, 12:21 PMbuild.gradle
file? I am OK with running my tests just on JVM. However the build
task seem to always run the iOS tests as well. (answer in thread 🧵)Mikolaj
07/09/2024, 2:22 PMafterEvaluate {
if (System.getProperty("os.name").lowercase().contains("mac")) {
tasks.getByName("compileTestKotlinIosArm64").enabled = false
tasks.getByName("compileTestKotlinIosSimulatorArm64").enabled = false
tasks.getByName("compileTestKotlinIosX64").enabled = false
}
}