Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for branchName (0.06 sec)

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

            get() = isMaster || isRelease
        val isMaster: Boolean
            get() = branchName == MASTER_BRANCH
        val isRelease: Boolean
            get() = branchName == RELEASE_BRANCH
        val isLegacyRelease: Boolean
            get() = OLD_RELEASE_PATTERN.matchEntire(branchName) != null
        val isExperimental: Boolean
            get() = branchName == EXPERIMENTAL_BRANCH
    
        fun vcsRootId() = DslContext.settingsRoot.id.toString()
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 17 09:57:45 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

    ) : PublishRelease(
            promotedBranch = branch.branchName,
            prepTask = "prepMilestone",
            promoteTask = branch.promoteMilestoneTaskName(),
            requiredConfirmationCode = "milestone",
            init = {
                id(MILESTONE_BUILD_CONFIGURATION_ID)
                name = "Release - Milestone"
                description = "Promotes the latest successful change on '${branch.branchName}' as a new milestone"
            },
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 24 03:08:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

            promotedBranch = branch.branchName,
            promoteTask = "publishBranchDocs",
            triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid,
        ) {
        init {
            id("Promotion_NightlyDocumentation")
            name = "Nightly Documentation"
            description =
                "Promotes the latest successful documentation changes on '${branch.branchName}' from Ready for Nightly as a new nightly documentation snapshot"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Apr 30 14:48:06 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt

                        buildType =
                            "Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}"
                        successfulOnly = true
                        branchFilter = "+:*"
                    }
                }
            }
    
            dependencies {
                dependency(
                    AbsoluteId("Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}"),
                ) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 10 10:38:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/UpdateWrapper.kt

        dependencies {
            dependency(AbsoluteId("Gradle_${vcsBranch.branchName.toCapitalized()}_$FINAL_RELEASE_BUILD_CONFIGURATION_ID")) {
                artifacts {
                    buildRule = lastSuccessful()
                    artifactRules = "version-info.properties => ./version-info-final-release"
                }
            }
            dependency(AbsoluteId("Gradle_${vcsBranch.branchName.toCapitalized()}_$RELEASE_CANDIDATE_BUILD_CONFIGURATION_ID")) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 24 03:08:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

            if (generateTriggers) {
                val enableTriggers = model.branch.enableVcsTriggers
                if (stage.trigger == Trigger.EACH_COMMIT) {
                    val effectiveTriggerBranches = mutableListOf(model.branch.branchName)
    
                    if (model.branch.isMaster) {
                        effectiveTriggerBranches.add(PROVIDER_API_MIGRATION_BRANCH)
                        effectiveTriggerBranches.add(BOT_DAILY_UPGRADLE_WRAPPER_BRANCH)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 10:33:45 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

        "-Dorg.gradle.java.installations.auto-download=false",
        "-Porg.gradle.java.installations.auto-download=false",
    ) + os.javaInstallationLocations(arch) +
        listOf(
            "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
            "-Porg.gradle.performance.db.url" to "%performance.db.url%",
            "-Porg.gradle.performance.db.username" to "%performance.db.username%",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

                        }
                    filterAuthorRole = PullRequests.GitHubRoleFilter.EVERYBODY
                    filterTargetBranch = "+:refs/heads/${VersionedSettingsBranch.fromDslContext().branchName}"
                }
        }
    }
    
    fun BaseGradleBuildType.tcParallelTests(numberOfBatches: Int) {
        if (numberOfBatches > 1) {
            params {
                param("env.TEAMCITY_PARALLEL_TESTS_ENABLED", "1")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            "-Dorg.gradle.workers.max=$maxParallelForks",
            "-PmaxParallelForks=$maxParallelForks",
            PLUGINS_PORTAL_URL_OVERRIDE,
            buildScanCustomValueParam("tcPipeline", VersionedSettingsBranch.fromDslContext().branchName),
            "-s",
            "%additional.gradle.parameters%",
            if (isContinue) "--continue" else "",
        )
    
    fun Dependencies.dependsOn(buildTypeId: RelativeId) {
        dependency(buildTypeId) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  10. Jenkinsfile

                  }
                }
              }
            }
          }
        }
      }
    }
    
    boolean isDeployedBranch() {
      return env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'maven-4.0.x' || env.BRANCH_NAME == 'maven-3.9.x'
    }
    
    /**
     * To other developers, if you are using this method above, please use the following syntax.
     * By default this method does NOT execute ITs anymore, just "install".
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 10 12:31:48 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top