Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BasePromotionBuildType (0.22 sec)

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

    import common.requiresOs
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.CheckoutMode
    
    abstract class BasePromotionBuildType(vcsRootId: String, cleanCheckout: Boolean = true) : BuildType() {
        init {
            vcs {
                root(AbsoluteId(vcsRootId))
    
                checkoutMode = CheckoutMode.ON_AGENT
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

    import common.promotionBuildParameters
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionMaster
    
    object StartReleaseCycle : BasePromotionBuildType(vcsRootId = gradlePromotionMaster) {
        init {
            id("Promotion_StartReleaseCycle")
            name = "Start Release Cycle"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.4K bytes
    - Viewed (1)
  3. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import vcsroots.gradlePromotionBranches
    
    object StartReleaseCycleTest : BasePromotionBuildType(vcsRootId = gradlePromotionBranches, cleanCheckout = false) {
        init {
            id("Promotion_AllBranchesStartReleaseCycleTest")
            name = "Start Release Cycle Test"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

        val gitUserEmail: String = "******@****.***",
        val extraParameters: String = "",
        vcsRootId: String = gradlePromotionMaster,
        cleanCheckout: Boolean = true
    ) : BasePromotionBuildType(vcsRootId, cleanCheckout) {
    
        init {
            artifactRules = """
            **/build/git-checkout/platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top