From ba6c671705ef427cc0ef879c4fe6d75ddb3d1dee Mon Sep 17 00:00:00 2001 From: Paulo Pinheiro Date: Wed, 15 Jun 2022 00:49:42 +0200 Subject: [PATCH] [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. --- kotlin/benchmark/build.gradle.kts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kotlin/benchmark/build.gradle.kts b/kotlin/benchmark/build.gradle.kts index 0f2829e9f..8595c02f5 100644 --- a/kotlin/benchmark/build.gradle.kts +++ b/kotlin/benchmark/build.gradle.kts @@ -76,7 +76,3 @@ tasks.register("downloadMultipleFi dest(File("${project.projectDir.absolutePath}/src/jvmMain/resources")) overwrite(false) } - -project.tasks.named("compileKotlinJvm") { - dependsOn("downloadMultipleFiles") -}