Colton Idle
03/14/2025, 6:22 PMclean_build_1gb {
tasks = [":app:assembleFreeDebug", "--rerun-tasks"]
jvm-args = ["-Xmx1024m", "-Dkotlin.daemon.jvm.options=-Xmx1024m"]
}
3. run gradle-profiler --benchmark --scenario-file scenarios.txt
It failed due to `org.gradle.cli.CommandLineArgumentException: Unknown command-line option --rerun-tasks
If I remove it that flag then profiler command does work. if I run the command from scenarios.txt directly in my command line then it does work. Feel like I'm missing something basic here on how to profile a "clean" build?Colton Idle
03/14/2025, 6:26 PMAnze Sodja
03/14/2025, 6:36 PMgradle-args = [
"--rerun-tasks"
]
Colton Idle
03/14/2025, 6:53 PMColton Idle
03/14/2025, 6:53 PM