Does having flag `org.gradle.parallel=true` run th...
# gradle
k
Does having flag
org.gradle.parallel=true
run these tasks in parallel?
./gradlew build ktlintCheck test
c
tasks are only run in parallel, within a project, when configuration cache is enabled and when the task dependency graph allows for parallel execution.
k
Ah, I see, you mean, tasks run in parallel between different modules, and only benefits to a multimodule project?
c
correct. in a multi-module project tasks will be run in parallel (within dependency constraints between projects, if any) with that setting. With configuration cache enabled (incubating, not everything supports this) tasks within a project may be run in parallel.
k
Thanks.