Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for branchName (0.23 sec)

  1. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

                return VersionedSettingsBranch(branch)
            }
    
            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 {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. .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
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 31 07:59:58 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

            publishBuildStatusToGithub(model)
        }
    
        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
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 05:43:32 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. .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"
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  5. .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"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  6. .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"
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  7. .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 {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Dec 09 14:10:43 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/VcsTriggers.kt

    val triggerExcludes = """
            -:.idea
            -:.github
            -:.teamcity
            -:platforms/documentation/docs/src/docs/release
    """.trimIndent()
    
    fun VersionedSettingsBranch.branchFilter() = """
        +:$branchName
    """.trimIndent()
    
    fun branchesFilterExcluding(vararg excludedBranch: String) = """
    +:*
    ${excludedBranch.joinToString("\n") { "-:$it" }}
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Nov 29 22:10:58 GMT 2023
    - 1K bytes
    - Viewed (0)
  9. .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 {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  10. .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"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top