File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,12 @@ import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.gradle
12
12
fun Project.additionalConfiguration () {
13
13
platforms.forEach { platform ->
14
14
val gradleBuild = knownBuilds.buildOn(platform).steps.items.single() as GradleBuildStep
15
- gradleBuild.tasks + = " " + fastBenchmarkTasks(platform)
15
+ gradleBuild.tasks + = " " + " fastBenchmark "
16
16
}
17
17
18
18
deployPlugin()
19
19
}
20
20
21
- fun fastBenchmarkTasks (platform : Platform ): String {
22
- return listOf (
23
- " js" , " jvm" , platform.nativeTaskPrefix()
24
- ).joinToString(separator = " " , transform = { " ${it} FastBenchmark" })
25
- }
26
-
27
21
const val gradlePublishKey = " gradle.publish.key"
28
22
const val gradlePublishSecret = " gradle.publish.secret"
29
23
You can’t perform that action at this time.
0 commit comments