Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for promoteNightlyTaskName (0.23 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt

        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            promoteTask = branch.promoteNightlyTaskName(),
            triggerName = "QuickFeedback",
        ) {
        init {
            id("Promotion_SnapshotFromQuickFeedback")
            name = "Nightly Snapshot (from QuickFeedback)"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

        fun vcsRootId() = DslContext.settingsRoot.id.toString()
    
        fun gradlePromoteVcsRootId() = if (isExperimental) GRADLE_PROMOTE_EXPERIMENTAL_VCS_ROOT_ID else GRADLE_PROMOTE_MASTER_VCS_ROOT_ID
    
        fun promoteNightlyTaskName() = nightlyTaskName("promote")
    
        fun prepNightlyTaskName() = nightlyTaskName("prep")
    
        fun promoteMilestoneTaskName(): String =
            when {
                isRelease -> "promoteReleaseMilestone"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 17 09:57:45 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

                    ******@****.***rName,
                    branch.prepNightlyTaskName(),
                    branch.promoteNightlyTaskName(),
                )
            }
        }
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            promoteTask = branch.promoteNightlyTaskName(),
            triggerName = "ReadyforNightly",
        ) {
        init {
            id(NIGHTLY_SNAPSHOT_BUILD_ID)
            name = "Nightly Snapshot"
            description =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 27 05:37:08 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top