[K/N] Improve performance benchmark build

This unlinks the benchmarksAnalyzer build from being configured automatically
whenever any benchmark build is.

Co-authored-by: Troels Lund <troels@google.com>
This commit is contained in:
Troels Bjerre Lund
2022-10-26 13:02:24 +00:00
committed by Space
parent 6a4e9f1d0f
commit 80b50bcd21
2 changed files with 4 additions and 4 deletions
+3 -2
View File
@@ -99,8 +99,9 @@ subprojects { proj ->
def rootBuildDirectory = projectDir.parentFile
task buildAnalyzer {
dependsOn gradle.includedBuild("benchmarksAnalyzer").task(":${getAnalyzerTargetName()}Binaries")
task buildAnalyzer(type: GradleBuild) {
buildFile = "../tools/benchmarksAnalyzer/build.gradle"
tasks = [":${getAnalyzerTargetName()}Binaries".toString()]
}
task konanRun {