Michal Klimczak
06/13/2022, 12:06 PMiosX64Test
or iosSimulatorArm64Test
works and the other is SKIPPED
. Can I check if the currently used JDK is arm64
or x64
compatible in gradle script to run the right test task?ephemient
06/13/2022, 12:43 PMMichal Klimczak
06/13/2022, 12:46 PMephemient
06/13/2022, 1:12 PMtasks.register("allEnabledNativeTests") {
dependsOn(tasks.withType<KotlinNativeTest>().matching { it.enabled })
}
Michal Klimczak
06/13/2022, 1:14 PMenabled
flag. looks sweet, I'll try that, thank you!Michal Klimczak
06/14/2022, 7:44 AMephemient
06/14/2022, 7:53 AMephemient
06/14/2022, 7:54 AMMichal Klimczak
06/14/2022, 7:55 AMMichal Klimczak
06/14/2022, 7:57 AM