Anyone knows why k/n compile and link tasks are running sequentually with gradle parallelism enabled?
#gradle
d
Dominaezzz
06/10/2020, 10:11 PM
The compiler never supported parallelism I think.
It worked before because the compiler was ran out of process but now it's run in process (because performance).
h
hmole
06/10/2020, 10:14 PM
What kind of performance if eight tasks(in my case) are rinning sequentually when the could be ran in parallel? Hope this is not intened behaviour
d
Dominaezzz
06/10/2020, 10:19 PM
It improves one of compilations and some cases of iterative builds.