Tóth István Zoltán
07/19/2024, 8:35 AMorg.gradle.parallel=false
but it seems to have no effect. The project has quite a few artifacts.Adam S
07/19/2024, 8:56 AMAdam S
07/19/2024, 8:59 AMorg.gradle.parallel
controls whether subprojects can run in parallel, while configuration cache allows any task to run in parallel. But --no-parallel
doesn't disable configuration cache parallisation. It's confusing :(
https://github.com/gradle/gradle/issues/24253Adam S
07/19/2024, 9:01 AM--no-configuration-cache
. And if that doesn't work, for a quick fix, limit the max-workers to 1
./gradlew publish -Dorg.gradle.workers.max=1
(documented here)Vampire
07/19/2024, 9:02 AMTóth István Zoltán
07/19/2024, 9:05 AMVampire
07/19/2024, 9:07 AMTóth István Zoltán
07/19/2024, 9:38 AMVampire
07/19/2024, 9:38 AMmbonnin
07/19/2024, 12:56 PMWill that work with multiplatform?Yep. Only downsides right now are: • no stats • no SNAPSHOTs
mbonnin
07/19/2024, 12:57 PM