- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for branchName (0.09 sec)
-
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
} private fun determineNightlyPromotionTriggerHour(branchName: String) = when (branchName) { MASTER_BRANCH -> 0 RELEASE_BRANCH -> 1 else -> { val matchResult = OLD_RELEASE_PATTERN.find(branchName) if (matchResult == null) { null } else {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 26 12:59:03 UTC 2024 - 3.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
promotedBranch = branch.branchName, prepTask = "prepMilestone", promoteTask = branch.promoteMilestoneTaskName(), requiredConfirmationCode = "milestone", init = { id("Promotion_Milestone") name = "Release - Milestone" description = "Promotes the latest successful change on '${branch.branchName}' as a new milestone" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 3.5K bytes - Viewed (0) -
.teamcity/src/test/kotlin/VersionedSettingsBranchTest.kt
"release6x, 2", "release7x, 3", "release27x,23" ] ) fun branchesWithVcsTriggerEnabled(branchName: String, expectedNightlyPromotionTriggerHour: Int?) { val vsb = VersionedSettingsBranch(branchName) assertTrue(vsb.enableVcsTriggers) assertEquals(expectedNightlyPromotionTriggerHour, vsb.nightlyPromotionTriggerHour) } @ParameterizedTest
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jan 31 07:59:58 UTC 2023 - 2.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt
import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedback(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt
promotedBranch = branch.branchName, promoteTask = "publishBranchDocs", triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid, vcsRootId = gradlePromotionBranches ) { init { id("Promotion_NightlyDocumentation") name = "Nightly Documentation"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 2.2K bytes - Viewed (0) -
.teamcity/src/test/kotlin/PromotionProjectTests.kt
} private fun setupModelFor(branchName: String): PromotionProject { // Set the project id here, so we can use methods on the DslContext DslContext.projectId = AbsoluteId("Gradle_${branchName.toCapitalized()}") DslContext.addParameters("Branch" to branchName) return PromotionProject(VersionedSettingsBranch(branchName)) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 13.4K 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))) { onDependencyFailure = FailureAction.FAIL_TO_START
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 07:23:13 UTC 2024 - 1.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt
promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches ) { 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 Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt
import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedbackStepPromote(branch: VersionedSettingsBranch) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches, cleanCheckout = false ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 09 14:10:43 UTC 2022 - 1.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "ReadyforNightly", vcsRootId = gradlePromotionBranches ) { init { id("Promotion_Nightly") name = "Nightly Snapshot" description = "Promotes the latest successful changes on '${branch.branchName}' from Ready for Nightly as a new nightly snapshot"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 2.6K bytes - Viewed (0)