update TeamCity DSL version to 2023.05 and remove tip configurations from Aggregator (#3581)
This commit is contained in:
parent
e96c50e99f
commit
4e2d63fa26
4
.teamcity/pom.xml
vendored
4
.teamcity/pom.xml
vendored
@ -77,13 +77,13 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.teamcity</groupId>
|
<groupId>org.jetbrains.teamcity</groupId>
|
||||||
<artifactId>configs-dsl-kotlin</artifactId>
|
<artifactId>configs-dsl-kotlin-latest</artifactId>
|
||||||
<version>${teamcity.dsl.version}</version>
|
<version>${teamcity.dsl.version}</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.teamcity</groupId>
|
<groupId>org.jetbrains.teamcity</groupId>
|
||||||
<artifactId>configs-dsl-kotlin-plugins</artifactId>
|
<artifactId>configs-dsl-kotlin-plugins-latest</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
|
40
.teamcity/settings.kts
vendored
40
.teamcity/settings.kts
vendored
@ -1,20 +1,20 @@
|
|||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.AbsoluteId
|
import jetbrains.buildServer.configs.kotlin.AbsoluteId
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType
|
import jetbrains.buildServer.configs.kotlin.BuildType
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.DslContext
|
import jetbrains.buildServer.configs.kotlin.DslContext
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.Project
|
import jetbrains.buildServer.configs.kotlin.Project
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.PullRequests
|
import jetbrains.buildServer.configs.kotlin.buildFeatures.PullRequests
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.commitStatusPublisher
|
import jetbrains.buildServer.configs.kotlin.buildFeatures.commitStatusPublisher
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.golang
|
import jetbrains.buildServer.configs.kotlin.buildFeatures.golang
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildFeatures.pullRequests
|
import jetbrains.buildServer.configs.kotlin.buildFeatures.pullRequests
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.dockerCommand
|
import jetbrains.buildServer.configs.kotlin.buildSteps.dockerCommand
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.exec
|
import jetbrains.buildServer.configs.kotlin.buildSteps.exec
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.powerShell
|
import jetbrains.buildServer.configs.kotlin.buildSteps.powerShell
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.failureConditions.BuildFailureOnMetric
|
import jetbrains.buildServer.configs.kotlin.failureConditions.BuildFailureOnMetric
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.failureConditions.failOnMetricChange
|
import jetbrains.buildServer.configs.kotlin.failureConditions.failOnMetricChange
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.project
|
import jetbrains.buildServer.configs.kotlin.project
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.schedule
|
import jetbrains.buildServer.configs.kotlin.triggers.schedule
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs
|
import jetbrains.buildServer.configs.kotlin.triggers.vcs
|
||||||
import jetbrains.buildServer.configs.kotlin.v2019_2.version
|
import jetbrains.buildServer.configs.kotlin.version
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The settings script is an entry point for defining a TeamCity
|
The settings script is an entry point for defining a TeamCity
|
||||||
@ -38,7 +38,7 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
|
|||||||
'Debug' option is available in the context menu for the task.
|
'Debug' option is available in the context menu for the task.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = "2020.2"
|
version = "2023.05"
|
||||||
|
|
||||||
val targets = arrayOf(
|
val targets = arrayOf(
|
||||||
"linux/amd64/1.19",
|
"linux/amd64/1.19",
|
||||||
@ -78,7 +78,9 @@ project {
|
|||||||
subProject(TipProject(tests.filter { test ->
|
subProject(TipProject(tests.filter { test ->
|
||||||
test.version == "tip"
|
test.version == "tip"
|
||||||
}))
|
}))
|
||||||
buildType(AggregatorBuild(tests))
|
buildType(AggregatorBuild(tests.filter { test ->
|
||||||
|
test.version != "tip"
|
||||||
|
}))
|
||||||
params {
|
params {
|
||||||
param("teamcity.ui.settings.readOnly", "true")
|
param("teamcity.ui.settings.readOnly", "true")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user