- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for vcsRootId (0.04 sec)
-
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
val isLegacyRelease: Boolean get() = OLD_RELEASE_PATTERN.matchEntire(branchName) != null val isExperimental: Boolean get() = branchName == EXPERIMENTAL_BRANCH fun vcsRootId() = DslContext.settingsRoot.id.toString() fun gradlePromoteVcsRootId() = if (isExperimental) GRADLE_PROMOTE_EXPERIMENTAL_VCS_ROOT_ID else GRADLE_PROMOTE_MASTER_VCS_ROOT_IDRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/WarmupEc2Agent.kt
import vcsroots.useAbsoluteVcs object WarmupEc2Agent : BuildType({ name = "Warmup EC2 Agent" id("Util_WarmupEc2Agent") vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId()) features { freeDiskSpace { // Lower the limit such that the agent work directories aren't cleaned during the AMI baking process requiredSpace = "100mb" } }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/UpdateWrapper.kt
import vcsroots.useAbsoluteVcs object UpdateWrapper : BuildType({ name = "UpdateWrapper" id("UpdateWrapper") val vcsBranch = VersionedSettingsBranch.fromDslContext() vcs.useAbsoluteVcs(vcsBranch.vcsRootId()) requirements { requiresOs(Os.LINUX) } params { text( "wrapperVersion", "should-be-overridden", display = ParameterDisplay.PROMPT,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 2.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
if (model.publishStatusToGitHub) { publishBuildStatusToGithub() } } fun BuildFeatures.enablePullRequestFeature() { pullRequests { vcsRootExtId = VersionedSettingsBranch.fromDslContext().vcsRootId() provider = github { authType = token { token = "%github.bot-teamcity.token%" }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 20 07:29:52 UTC 2025 - 8.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt
name = "GitHub Merge Queue Check Pass" type = Type.COMPOSITE vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId())) checkoutMode = CheckoutMode.ON_AGENT } features { enablePullRequestFeature() publishBuildStatusToGithub(model) }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Oct 14 16:28:05 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt
name = "Publish Kotlin DSL Plugin" id("Util_PublishKotlinDslPlugin") uuid = "${DslContext.uuidPrefix}_Util_PublishKotlinDslPlugin" vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId()) requirements { requiresOs(Os.LINUX) } params { param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX)) param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%")
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 19 08:02:04 UTC 2025 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
// We want it to be triggered only when there're pending changes in the specific vcs root, i.e. GradleMaster/GradleRelease triggerRules = "+:root=${branch.vcsRootId()}:." branchFilter = "+:<default>" } class PublishNightlySnapshot( branch: VersionedSettingsBranch, ) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 4.3K bytes - Viewed (0)