- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for prepNightlyTaskName (0.11 sec)
-
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
val isExperimental: Boolean get() = branchName == EXPERIMENTAL_BRANCH fun vcsRootId() = DslContext.settingsRoot.id.toString() fun promoteNightlyTaskName() = nightlyTaskName("promote") fun prepNightlyTaskName() = nightlyTaskName("prep") fun promoteMilestoneTaskName(): String = when { isRelease -> "promoteReleaseMilestone" else -> "promoteMilestone" }
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/PublishNightlySnapshot.kt
import vcsroots.gradlePromotionBranches class PublishNightlySnapshot(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "ReadyforNightly", vcsRootId = gradlePromotionBranches ) { init { id("Promotion_Nightly") name = "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)