I guess the issue you have with ios is some libraries are missing. The reason is that some libs for k/wasm (coroutines and atomicfu) were built separately in experimental repo, and that CI didn't have macos agents to build them for ios.
You can workaround it by substitution dependencies (with -wasm postfix) for missing libraries:
https://docs.gradle.org/current/userguide/resolution_rules.html
But it's important to do that only for ios configurations, and keep the original dependencies for other target s (k/wasm, k/js, etc..)