A separate issue is running iOS test suite. Someho...
# multiplatform
m
A separate issue is running iOS test suite. Somehow for my project the
iosX64Test
is not marked as a test gradle task and when I run it and the test step is SKIPPED.
iosSimulatorArm64Test
is marked green (test) but fails with
No value present
(whatever the hell that means ;)). Funny thing is, with KampKit it's exactly the opposite -
iosSimulatorArm64Test
is SKIPPED and
iosX64Test
are run just fine. On M1 machine.
g
Maybe check if both Gradle/JVM are using arm64 and not rosetta? (I suppose using a x64 JVM with rosetta will make gradle detect only the x64)
m
Spot on! I used arm64 JDK for my project and x64 for kampkit. If I run x64Test with the arm64 JDK they are skipped indeed in kampkit and the arm64 start working. And the "No value present" is on both architectures in my project, so I guess I need to dive deeper. Thank you so much 🙂
👍 1