add all branches but PRs to filter (#3590)
This commit is contained in:
parent
d8ed28ff35
commit
15142ac3d6
9
.teamcity/settings.kts
vendored
9
.teamcity/settings.kts
vendored
@ -170,7 +170,14 @@ class TestBuild(val os: String, val arch: String, val version: String, buildId:
|
|||||||
|
|
||||||
vcs {
|
vcs {
|
||||||
root(DslContext.settingsRoot)
|
root(DslContext.settingsRoot)
|
||||||
branchFilter = if (version == "tip") "-:pull/*" else "+:*"
|
branchFilter = if (version == "tip") {
|
||||||
|
"""
|
||||||
|
+:*
|
||||||
|
-:pull/*
|
||||||
|
""".trimIndent()
|
||||||
|
} else {
|
||||||
|
"+:*"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (version == "tip") {
|
if (version == "tip") {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user