- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for branchName (0.11 sec)
-
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
get() = isMaster || isRelease val isMaster: Boolean get() = branchName == MASTER_BRANCH val isRelease: Boolean get() = branchName == RELEASE_BRANCH val isLegacyRelease: Boolean get() = OLD_RELEASE_PATTERN.matchEntire(branchName) != null val isExperimental: Boolean get() = branchName == EXPERIMENTAL_BRANCH fun vcsRootId() = DslContext.settingsRoot.id.toString()
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 17 09:57:45 UTC 2025 - 3.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
) : PublishRelease( promotedBranch = branch.branchName, prepTask = "prepMilestone", promoteTask = branch.promoteMilestoneTaskName(), requiredConfirmationCode = "milestone", init = { id(MILESTONE_BUILD_CONFIGURATION_ID) name = "Release - Milestone" description = "Promotes the latest successful change on '${branch.branchName}' as a new milestone" },
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt
promotedBranch = branch.branchName, promoteTask = "publishBranchDocs", triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid, ) { init { id("Promotion_NightlyDocumentation") name = "Nightly Documentation" description = "Promotes the latest successful documentation changes on '${branch.branchName}' from Ready for Nightly as a new nightly documentation snapshot"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Apr 30 14:48:06 UTC 2025 - 2.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt
buildType = "Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}" successfulOnly = true branchFilter = "+:*" } } } dependencies { dependency( AbsoluteId("Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}"), ) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 10 10:38:00 UTC 2025 - 2.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/UpdateWrapper.kt
dependencies { dependency(AbsoluteId("Gradle_${vcsBranch.branchName.toCapitalized()}_$FINAL_RELEASE_BUILD_CONFIGURATION_ID")) { artifacts { buildRule = lastSuccessful() artifactRules = "version-info.properties => ./version-info-final-release" } } dependency(AbsoluteId("Gradle_${vcsBranch.branchName.toCapitalized()}_$RELEASE_CANDIDATE_BUILD_CONFIGURATION_ID")) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 2.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt
triggers.vcs { quietPeriodMode = VcsTrigger.QuietPeriodMode.DO_NOT_USE branchFilter = """ +:gh-readonly-queue/${model.branch.branchName}/* +:${model.branch.branchName} """ } } dependencies { snapshot(RelativeId(stageTriggerId(model, StageName.READY_FOR_NIGHTLY))) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt
promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", ) { init { id("Promotion_SnapshotFromQuickFeedbackStepUpload") name = "Nightly Snapshot (from QuickFeedback) - Upload" description = "Builds and uploads the latest successful changes on '${branch.branchName}' from Quick Feedback as a new distribution"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt
promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "QuickFeedback", ) { init { id("Promotion_SnapshotFromQuickFeedback") name = "Nightly Snapshot (from QuickFeedback)" description = "Promotes the latest successful changes on '${branch.branchName}' from Quick Feedback as a new nightly snapshot"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt
package promotion import common.VersionedSettingsBranch class PublishNightlySnapshotFromQuickFeedbackStepPromote( branch: VersionedSettingsBranch, ) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", cleanCheckout = false, ) { init { id("Promotion_SnapshotFromQuickFeedbackStepPromote")
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "ReadyforNightly", ) { init { id(NIGHTLY_SNAPSHOT_BUILD_ID) name = "Nightly Snapshot" description = "Promotes the latest successful changes on '${branch.branchName}' from Ready for Nightly as a new nightly snapshot"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 27 05:37:08 UTC 2025 - 2.6K bytes - Viewed (0)