Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BasePublishGradleDistribution (1.76 sec)

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

                        this@BasePublishGradleDistribution.gitUserName,
                        this@BasePublishGradleDistribution.gitUserEmail,
                        this@BasePublishGradleDistribution.triggerName,
                        this@BasePublishGradleDistribution.prepTask,
                        "checkNeedToPromote",
                    )
                }
            }
        }
    }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jun 26 12:10:23 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepCheckReady.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    
    class PublishNightlySnapshotFromQuickFeedbackStepCheckReady(
        branch: VersionedSettingsBranch,
    ) : BasePublishGradleDistribution(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            triggerName = "QuickFeedback",
            cleanCheckout = false,
        ) {
        init {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt

        promoteTask: String,
        triggerName: String,
        gitUserName: String = "bot-teamcity",
        gitUserEmail: String = "******@****.***",
        extraParameters: String = "",
    ) : BasePublishGradleDistribution(promotedBranch, prepTask, triggerName, gitUserName, gitUserEmail, extraParameters) {
        init {
            steps {
                if (prepTask != null) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    
    class PublishNightlySnapshotFromQuickFeedbackStepUpload(
        branch: VersionedSettingsBranch,
    ) : BasePublishGradleDistribution(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            triggerName = "QuickFeedback",
        ) {
        init {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    
    class PublishNightlySnapshotFromQuickFeedbackStepPromote(
        branch: VersionedSettingsBranch,
    ) : BasePublishGradleDistribution(
            promotedBranch = branch.branchName,
            prepTask = branch.prepNightlyTaskName(),
            triggerName = "QuickFeedback",
            cleanCheckout = false,
        ) {
        init {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top