Skip to content

Commit 724fbfa

Browse files
author
Abduqodiri Qurbonzoda
committed
Extract additionalConfiguration to separate file
1 parent 5c8e9bd commit 724fbfa

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.teamcity/Benchmarks.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import jetbrains.buildServer.configs.kotlin.v2018_2.*
77
import jetbrains.buildServer.configs.kotlin.v2018_2.buildSteps.gradle
88
import java.lang.IllegalArgumentException
99

10-
fun Project.additionalConfiguration() {
11-
subProject(benchmarksProject())
12-
}
13-
1410
fun benchmarksProject() = Project {
1511
this.id("Benchmarks".toId())
1612
this.name = "Benchmarks"

.teamcity/additionalConfiguration.kt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright 2016-2020 JetBrains s.r.o.
3+
* Use of this source code is governed by the Apache 2.0 License that can be found in the LICENSE.txt file.
4+
*/
5+
6+
import jetbrains.buildServer.configs.kotlin.v2018_2.Project
7+
8+
fun Project.additionalConfiguration() {
9+
subProject(benchmarksProject())
10+
}

0 commit comments

Comments
 (0)