Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for VersionedSettingsBranch (1.29 sec)

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

            private const val GRADLE_PROMOTE_EXPERIMENTAL_VCS_ROOT_ID = "Gradle_GradlePromoteExperimental"
    
            private val OLD_RELEASE_PATTERN = "release(\\d+)x".toRegex()
    
            fun fromDslContext(): VersionedSettingsBranch = VersionedSettingsBranch(DslContext.getParameter("branch"))
    
            private fun determineNightlyPromotionTriggerHour(branchName: String) =
                when (branchName) {
                    MASTER_BRANCH -> 0
    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/projects/GradleBuildToolRootProject.kt

    import common.VersionedSettingsBranch
    import common.isSecurityFork
    import jetbrains.buildServer.configs.kotlin.Project
    import model.CIBuildModel
    import model.DefaultFunctionalTestBucketProvider
    import model.JsonBasedGradleSubprojectProvider
    import promotion.PromotionProject
    import util.UtilPerformanceProject
    import util.UtilProject
    import java.io.File
    
    class GradleBuildToolRootProject(
        branch: VersionedSettingsBranch,
    ) : Project({
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import model.StageName
    
    class PublishNightlyDocumentation(
        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            promoteTask = "publishBranchDocs",
    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/PublishRelease.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    const val FINAL_RELEASE_BUILD_CONFIGURATION_ID = "Promotion_FinalRelease"
    const val RELEASE_CANDIDATE_BUILD_CONFIGURATION_ID = "Promotion_ReleaseCandidate"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 24 03:08:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. .teamcity/settings.kts

    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.project
    import jetbrains.buildServer.configs.kotlin.version
    import projects.GradleBuildToolRootProject
    
    version = "2025.07"
    
    /*
    
    Master (buildTypeId: Gradle_Master)
     |----- Check (buildTypeId: Gradle_Master_Check)
     |        |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux)
     |        |---- QuickFeedback
     |        |---- ...
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Aug 14 07:58:26 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import common.gradleWrapper
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.triggers.finishBuildTrigger
    
    object MergeReleaseIntoMaster : BasePromotionBuildType() {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 10 10:38:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package promotion
    
    import common.PLUGINS_PORTAL_URL_OVERRIDE
    import common.VersionedSettingsBranch
    import common.gradleWrapper
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    package model
    
    import com.google.gson.Gson
    import com.google.gson.GsonBuilder
    import com.google.gson.reflect.TypeToken
    import common.Arch
    import common.Os
    import common.VersionedSettingsBranch
    import configurations.ParallelizationMethod
    import java.io.File
    import java.util.LinkedList
    
    const val MASTER_CHECK_CONFIGURATION = "Gradle_Master_Check"
    const val MAX_PROJECT_NUMBER_IN_BUCKET = 11
    
    /**
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId())
    
        steps {
            gradleWrapper {
                tasks = "tasks"
                gradleParams = ""
                param("org.jfrog.artifactory.selectedDeployableServer.defaultModuleVersionConfiguration", "GLOBAL")
            }
        }
    
        triggers {
            vcs {
                branchFilter = ""
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 983 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

            type = Type.COMPOSITE
    
            vcs {
                root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId()))
                checkoutMode = CheckoutMode.ON_AGENT
            }
    
            features {
                enablePullRequestFeature()
                publishBuildStatusToGithub(model)
            }
    
            if (!VersionedSettingsBranch.fromDslContext().isExperimental) {
                triggers.vcs {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top