Add build reports for diagnosing build problems in Gradle

#KT-12700 Fixed

To turn build reports, add 'kotlin.build.report.enable=true' to
gradle.properties file
(or pass it in CLI via`-Pkotlin.build.report.enable=true`).
By default build reports are created in
`rootProject/build/reports/kotlin-build`.
Build report dir can be customized via `kotlin.build.report.dir`
property.
This commit is contained in:
Alexey Tsvetkov
2019-01-28 15:35:26 +03:00
parent 8fc8b95d83
commit 98ef00b957
15 changed files with 375 additions and 27 deletions
@@ -26,5 +26,6 @@ interface CompilationResults : Remote {
}
enum class CompilationResultCategory(val code: Int) {
IC_COMPILE_ITERATION(0)
IC_COMPILE_ITERATION(0),
IC_LOG(1)
}