Hi, is there a way to make `linkReleaseFrameworkIo...
# multiplatform
w
Hi, is there a way to make
linkReleaseFrameworkIos*
tasks run in parallel? I do have
org.gradle.parallel=true
and most other tasks run in parallel just fine except for the iOS linking. From what I see it should be possible to run them in parallel without problem yet they are run sequentially… any hints? (btw. is it possible to speed up the linking? building everything else is about ~1minute but ios linking takes ~10 minutes…)
a
org.gradle.parallel=true
makes tasks from separate subprojects run in parallel. To allow any task to run in parallel you need to enable configuration cache https://docs.gradle.org/current/userguide/configuration_cache.html
w
I do have it enabled. I think I have everything possible "speedup":
Copy code
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
org.gradle.configuration-cache.problems=warn
t
Could you share a build scan?
w
@tapchicoma can I do it via PM?
t
yes