|
| 1 | +package documentation.vcsRoots |
| 2 | + |
| 3 | +import jetbrains.buildServer.configs.kotlin.vcs.GitVcsRoot |
| 4 | + |
| 5 | + |
| 6 | +// KmpRoots |
| 7 | +object KotlinMultiplatformVCS: GitVcsRoot ({ |
| 8 | + name = "Kotlin Multiplatform root" |
| 9 | + url = "https://github.com/JetBrains/kotlin-multiplatform-dev-docs.git" |
| 10 | + branch = "refs/heads/master" |
| 11 | + branchSpec = "+:refs/heads/*" |
| 12 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 13 | + authMethod = uploadedKey { |
| 14 | + uploadedKey = "default teamcity key" |
| 15 | + } |
| 16 | +}) |
| 17 | + |
| 18 | +// Kotlin Reference With Coroutine Roots |
| 19 | +object KotlinReferenceRoot: GitVcsRoot ({ |
| 20 | + name = "Kotlin Reference" |
| 21 | + url = "https://github.com/JetBrains/kotlin-web-site.git" |
| 22 | + branch = "refs/heads/master" |
| 23 | + branchSpec = "+:refs/heads/*" |
| 24 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 25 | + authMethod = uploadedKey { |
| 26 | + uploadedKey = "default teamcity key" |
| 27 | + } |
| 28 | +}) |
| 29 | + |
| 30 | +object KotlinxCoroutinesRoot: GitVcsRoot ({ |
| 31 | + name = "Kotlinx Coroutines" |
| 32 | + url = "https://github.com/Kotlin/kotlinx.coroutines.git" |
| 33 | + branch = "refs/heads/master" |
| 34 | + branchSpec = "+:refs/heads/*" |
| 35 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 36 | + authMethod = uploadedKey { |
| 37 | + uploadedKey = "default teamcity key" |
| 38 | + } |
| 39 | +}) |
| 40 | + |
| 41 | +object KotlinxLincheckRoot: GitVcsRoot ({ |
| 42 | + name = "Kotlinx Lincheck" |
| 43 | + url = "https://github.com/JetBrains/lincheck.git" |
| 44 | + branch = "refs/heads/master" |
| 45 | + branchSpec = "+:refs/heads/*" |
| 46 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 47 | + authMethod = uploadedKey { |
| 48 | + uploadedKey = "default teamcity key" |
| 49 | + } |
| 50 | +}) |
| 51 | + |
| 52 | +object DokkaRoot: GitVcsRoot ({ |
| 53 | + name = "Dokka" |
| 54 | + url = "https://github.com/Kotlin/dokka.git" |
| 55 | + branch = "refs/heads/master" |
| 56 | + branchSpec = "+:refs/heads/*" |
| 57 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 58 | + authMethod = uploadedKey { |
| 59 | + uploadedKey = "default teamcity key" |
| 60 | + } |
| 61 | +}) |
| 62 | + |
| 63 | +object APIGuidelinesRoot: GitVcsRoot ({ |
| 64 | + name = "API Guidelines" |
| 65 | + url = "https://github.com/Kotlin/api-guidelines.git" |
| 66 | + branch = "refs/heads/main" |
| 67 | + branchSpec = "+:refs/heads/*" |
| 68 | + checkoutPolicy = AgentCheckoutPolicy.AUTO |
| 69 | + authMethod = uploadedKey { |
| 70 | + uploadedKey = "default teamcity key" |
| 71 | + } |
| 72 | +}) |
0 commit comments