1
- import jetbrains.buildServer.configs.kotlin.v2018_2.*
2
- import jetbrains.buildServer.configs.kotlin.v2018_2.buildFeatures.commitStatusPublisher
3
- import jetbrains.buildServer.configs.kotlin.v2018_2.buildSteps.*
4
- import jetbrains.buildServer.configs.kotlin.v2018_2.triggers.*
1
+ import jetbrains.buildServer.configs.kotlin.v2019_2.*
2
+ import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.*
3
+ import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.*
5
4
6
5
/*
7
6
The settings script is an entry point for defining a TeamCity
@@ -25,16 +24,7 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
25
24
'Debug' option is available in the context menu for the task.
26
25
*/
27
26
28
- version = " 2018.2"
29
- val versionSuffixParameter = " versionSuffix"
30
- val teamcitySuffixParameter = " teamcitySuffix"
31
- val releaseVersionParameter = " releaseVersion"
32
-
33
- val bintrayUserName = " %env.BINTRAY_USER%"
34
- val bintrayToken = " %env.BINTRAY_API_KEY%"
35
-
36
- val platforms = listOf (" Windows" , " Linux" , " Mac OS X" )
37
- val jdk = " JDK_18_x64"
27
+ version = " 2020.1"
38
28
39
29
project {
40
30
// Disable editing of project and build settings from the UI to avoid issues with TeamCity
@@ -54,22 +44,30 @@ project {
54
44
}
55
45
}
56
46
57
- val deployConfigure = deployConfigure ().apply {
47
+ val deployVersion = deployVersion ().apply {
58
48
dependsOnSnapshot(buildAll, onFailure = FailureAction .IGNORE )
49
+ dependsOnSnapshot(BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID ) {
50
+ reuseBuilds = ReuseBuilds .NO
51
+ }
59
52
}
60
- val deploys = platforms.map { deploy(it, deployConfigure ) }
61
- val deployPublish = deployPublish(deployConfigure ).apply {
53
+ val deploys = platforms.map { deploy(it, deployVersion ) }
54
+ val deployPublish = deployPublish(deployVersion ).apply {
62
55
dependsOnSnapshot(buildAll, onFailure = FailureAction .IGNORE )
56
+ dependsOnSnapshot(BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID ) {
57
+ reuseBuilds = ReuseBuilds .NO
58
+ }
63
59
deploys.forEach {
64
60
dependsOnSnapshot(it)
65
61
}
66
62
}
67
63
68
- buildTypesOrder = listOf (buildAll, buildVersion, * builds.toTypedArray(), deployPublish, deployConfigure, * deploys.toTypedArray())
64
+ buildTypesOrder = listOf (buildAll, buildVersion, * builds.toTypedArray(), deployPublish, deployVersion, * deploys.toTypedArray())
65
+
66
+ additionalConfiguration()
69
67
}
70
68
71
69
fun Project.buildVersion () = BuildType {
72
- id(" Build_Version " )
70
+ id(BUILD_CONFIGURE_VERSION_ID )
73
71
this .name = " Build (Configure Version)"
74
72
commonConfigure()
75
73
@@ -91,7 +89,7 @@ fun Project.buildVersion() = BuildType {
91
89
}.also { buildType(it) }
92
90
93
91
fun Project.buildAll (versionBuild : BuildType ) = BuildType {
94
- id(" Build_All " )
92
+ id(BUILD_ALL_ID )
95
93
this .name = " Build (All)"
96
94
type = BuildTypeSettings .Type .COMPOSITE
97
95
@@ -107,22 +105,10 @@ fun Project.buildAll(versionBuild: BuildType) = BuildType {
107
105
}
108
106
}
109
107
110
- features {
111
- commitStatusPublisher {
112
- publisher = github {
113
- githubUrl = " https://api.github.com"
114
- authType = personalToken {
115
- token = " credentialsJSON:af36802a-ccd4-401b-86b9-0b08d2dfad17"
116
- }
117
- }
118
- param(" github_oauth_user" , " ilya-g" )
119
- }
120
- }
121
-
122
108
commonConfigure()
123
109
}.also { buildType(it) }
124
110
125
- fun Project.build (platform : String , versionBuild : BuildType ) = platform(platform, " Build" ) {
111
+ fun Project.build (platform : Platform , versionBuild : BuildType ) = buildType( " Build" , platform ) {
126
112
127
113
dependsOnSnapshot(versionBuild)
128
114
@@ -133,7 +119,7 @@ fun Project.build(platform: String, versionBuild: BuildType) = platform(platform
133
119
134
120
steps {
135
121
gradle {
136
- name = " Build and Test $platform Binaries"
122
+ name = " Build and Test ${ platform.buildTypeName()} Binaries"
137
123
jdkHome = " %env.$jdk %"
138
124
jvmArgs = " -Xmx1g"
139
125
tasks = " clean publishToBuildLocal check"
@@ -148,23 +134,8 @@ fun Project.build(platform: String, versionBuild: BuildType) = platform(platform
148
134
artifactRules = " +:build/maven=>maven\n +:build/api=>api"
149
135
}
150
136
151
- fun BuildType.dependsOn (build : BuildType , configure : Dependency .() -> Unit ) =
152
- apply {
153
- dependencies.dependency(build, configure)
154
- }
155
-
156
- fun BuildType.dependsOnSnapshot (build : BuildType , onFailure : FailureAction = FailureAction .FAIL_TO_START , configure : SnapshotDependency .() -> Unit = {}) = apply {
157
- dependencies.dependency(build) {
158
- snapshot {
159
- configure()
160
- onDependencyFailure = onFailure
161
- onDependencyCancel = FailureAction .CANCEL
162
- }
163
- }
164
- }
165
-
166
- fun Project.deployConfigure () = BuildType {
167
- id(" Deploy_Configure" )
137
+ fun Project.deployVersion () = BuildType {
138
+ id(DEPLOY_CONFIGURE_VERSION_ID )
168
139
this .name = " Deploy (Configure Version)"
169
140
commonConfigure()
170
141
@@ -174,6 +145,8 @@ fun Project.deployConfigure() = BuildType {
174
145
param(" bintray-user" , bintrayUserName)
175
146
password(" bintray-key" , bintrayToken)
176
147
param(versionSuffixParameter, " dev-%build.counter%" )
148
+ param(" reverse.dep.$BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID .system.libs.repo.description" , libraryStagingRepoDescription)
149
+ param(" env.libs.repository.id" , " %dep.$BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID .env.libs.repository.id%" )
177
150
}
178
151
179
152
requirements {
@@ -184,7 +157,7 @@ fun Project.deployConfigure() = BuildType {
184
157
steps {
185
158
gradle {
186
159
name = " Verify Gradle Configuration"
187
- tasks = " clean publishBintrayCreateVersion "
160
+ tasks = " clean publishPrepareVersion "
188
161
gradleParams = " --info --stacktrace -P$versionSuffixParameter =%$versionSuffixParameter % -P$releaseVersionParameter =%$releaseVersionParameter % -PbintrayApiKey=%bintray-key% -PbintrayUser=%bintray-user%"
189
162
buildFile = " "
190
163
jdkHome = " %env.$jdk %"
@@ -193,7 +166,7 @@ fun Project.deployConfigure() = BuildType {
193
166
}.also { buildType(it) }
194
167
195
168
fun Project.deployPublish (configureBuild : BuildType ) = BuildType {
196
- id(" Deploy_Publish " )
169
+ id(DEPLOY_PUBLISH_ID )
197
170
this .name = " Deploy (Publish)"
198
171
type = BuildTypeSettings .Type .COMPOSITE
199
172
dependsOnSnapshot(configureBuild)
@@ -202,12 +175,13 @@ fun Project.deployPublish(configureBuild: BuildType) = BuildType {
202
175
// Tell configuration build how to get release version parameter from this build
203
176
// "dev" is the default and means publishing is not releasing to public
204
177
text(configureBuild.reverseDepParamRefs[releaseVersionParameter].name, " dev" , display = ParameterDisplay .PROMPT , label = " Release Version" )
178
+ param(" env.libs.repository.id" , " %dep.$BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID .env.libs.repository.id%" )
205
179
}
206
180
commonConfigure()
207
181
}.also { buildType(it) }
208
182
209
183
210
- fun Project.deploy (platform : String , configureBuild : BuildType ) = platform(platform, " Deploy" ) {
184
+ fun Project.deploy (platform : Platform , configureBuild : BuildType ) = buildType( " Deploy" , platform ) {
211
185
type = BuildTypeSettings .Type .DEPLOYMENT
212
186
enablePersonalBuilds = false
213
187
maxRunningBuilds = 1
@@ -216,6 +190,7 @@ fun Project.deploy(platform: String, configureBuild: BuildType) = platform(platf
216
190
param(releaseVersionParameter, " ${configureBuild.depParamRefs[releaseVersionParameter]} " )
217
191
param(" bintray-user" , bintrayUserName)
218
192
password(" bintray-key" , bintrayToken)
193
+ param(" env.libs.repository.id" , " %dep.$BUILD_CREATE_STAGING_REPO_ABSOLUTE_ID .env.libs.repository.id%" )
219
194
}
220
195
221
196
vcs {
@@ -224,7 +199,7 @@ fun Project.deploy(platform: String, configureBuild: BuildType) = platform(platf
224
199
225
200
steps {
226
201
gradle {
227
- name = " Deploy $platform Binaries"
202
+ name = " Deploy ${ platform.buildTypeName()} Binaries"
228
203
jdkHome = " %env.$jdk %"
229
204
jvmArgs = " -Xmx1g"
230
205
gradleParams = " --info --stacktrace -P$versionSuffixParameter =%$versionSuffixParameter % -P$releaseVersionParameter =%$releaseVersionParameter % -PbintrayApiKey=%bintray-key% -PbintrayUser=%bintray-user%"
@@ -234,53 +209,3 @@ fun Project.deploy(platform: String, configureBuild: BuildType) = platform(platf
234
209
}
235
210
}
236
211
}.dependsOnSnapshot(configureBuild)
237
-
238
- fun Project.platform (platform : String , name : String , configure : BuildType .() -> Unit ) = BuildType {
239
- // ID is prepended with Project ID, so don't repeat it here
240
- // ID should conform to identifier rules, so just letters, numbers and underscore
241
- id(" ${name} _${platform.substringBefore(" " )} " )
242
- // Display name of the build configuration
243
- this .name = " $name ($platform )"
244
-
245
- requirements {
246
- contains(" teamcity.agent.jvm.os.name" , platform)
247
- }
248
-
249
- params {
250
- // This parameter is needed for macOS agent to be compatible
251
- if (platform.startsWith(" Mac" )) param(" env.JDK_17" , " " )
252
- }
253
-
254
- commonConfigure()
255
- configure()
256
- }.also { buildType(it) }
257
-
258
-
259
- fun BuildType.commonConfigure () {
260
- requirements {
261
- noLessThan(" teamcity.agent.hardware.memorySizeMb" , " 6144" )
262
- }
263
-
264
- // Allow to fetch build status through API for badges
265
- allowExternalStatus = true
266
-
267
- // Configure VCS, by default use the same and only VCS root from which this configuration is fetched
268
- vcs {
269
- root(DslContext .settingsRoot)
270
- showDependenciesChanges = true
271
- checkoutMode = CheckoutMode .ON_AGENT
272
- }
273
-
274
- failureConditions {
275
- errorMessage = true
276
- nonZeroExitCode = true
277
- executionTimeoutMin = 120
278
- }
279
-
280
- features {
281
- feature {
282
- id = " perfmon"
283
- type = " perfmon"
284
- }
285
- }
286
- }
0 commit comments