[K/N] Get rid of urls in perf infra code

This commit is contained in:
Pavel Kunyavskiy
2022-07-22 15:54:04 +02:00
committed by Space
parent f13c71bb06
commit d6f235679b
8 changed files with 50 additions and 15 deletions
+5 -1
View File
@@ -313,7 +313,11 @@ subprojects.each {
task teamCityStat(type:Exec) {
def analyzer = findAnalyzerBinary()
commandLine analyzer, "-r", "teamcity", "${buildDir.absolutePath}/${nativeJson}"
commandLine analyzer, "-r", "teamcity",
"--artifactory-url", "https://repo.labs.intellij.net/kotlin-native-benchmarks",
"--teamcity-url", "http://buildserver.labs.intellij.net",
"--server-url", findProperty("kotlin.native.performance.server.url")?.toString() ?: "http://localhost:3000",
"${buildDir.absolutePath}/${nativeJson}"
}
task cinterop {