[Kotlin] Remove download benchmark files dependency (#7314)

There was a step in the compilation process where benchmark data is
downloaded before starting the kotlin compilation process.

Since we are not running benchmark on CI anymore, we remove the
dependency. To run benchmarks the download task needs to be executed
manually.
This commit is contained in:
Paulo Pinheiro
2022-06-15 00:49:42 +02:00
committed by GitHub
parent d2f33fc454
commit ba6c671705

View File

@@ -76,7 +76,3 @@ tasks.register<de.undercouch.gradle.tasks.download.Download>("downloadMultipleFi
dest(File("${project.projectDir.absolutePath}/src/jvmMain/resources"))
overwrite(false)
}
project.tasks.named("compileKotlinJvm") {
dependsOn("downloadMultipleFiles")
}