Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for fromDslContext (0.21 sec)

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

    object SanityCheck : BuildType({
        id("Promotion_SanityCheck")
        name = "SanityCheck"
        description = "Sanity check for promotion project"
    
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId())
    
        steps {
            gradleWrapper {
                tasks = "tasks"
                gradleParams = ""
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 29 08:57:18 UTC 2025
    - 978 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

            }
        }
    }
    
    fun BuildFeatures.publishBuildStatusToGithub() {
        if (VersionedSettingsBranch.fromDslContext().isExperimental) {
            // don't publish xperimental commit status that might bother developer
            return
        }
    
        commitStatusPublisher {
            vcsRootExtId = VersionedSettingsBranch.fromDslContext().vcsRootId()
            publisher =
                github {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

            vcs {
                root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId()))
                checkoutMode = CheckoutMode.ON_AGENT
            }
    
            features {
                enablePullRequestFeature()
                publishBuildStatusToGithub(model)
            }
    
            if (!VersionedSettingsBranch.fromDslContext().isExperimental) {
                triggers.vcs {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Oct 14 16:28:05 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

    import vcsroots.useAbsoluteVcs
    
    object WarmupEc2Agent : BuildType({
        name = "Warmup EC2 Agent"
        id("Util_WarmupEc2Agent")
    
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        features {
            freeDiskSpace {
                // Lower the limit such that the agent work directories aren't cleaned during the AMI baking process
                requiredSpace = "100mb"
            }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. .teamcity/settings.kts

     |        |----- Nightly Snapshot
     |        |----- ...
     |
     |----- Util
             |----- WarmupEc2Agent
             |----- AdHocPerformanceTest
     */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Aug 14 07:58:26 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt

        private val model =
            CIBuildModel(
                projectId = "Check",
                branch = VersionedSettingsBranch.fromDslContext(),
                buildScanTags = listOf("Check"),
                subprojects = subprojectProvider,
            )
    
        @Test
        fun `test stage tags`() {
            assertEquals(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Aug 05 16:58:51 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/UpdateWrapper.kt

    import promotion.RELEASE_CANDIDATE_BUILD_CONFIGURATION_ID
    import vcsroots.useAbsoluteVcs
    
    object UpdateWrapper : BuildType({
        name = "UpdateWrapper"
        id("UpdateWrapper")
    
        val vcsBranch = VersionedSettingsBranch.fromDslContext()
    
        vcs.useAbsoluteVcs(vcsBranch.vcsRootId())
    
        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
            text(
                "wrapperVersion",
                "should-be-overridden",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 24 03:08:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

        name = "Publish Kotlin DSL Plugin"
        id("Util_PublishKotlinDslPlugin")
        uuid = "${DslContext.uuidPrefix}_Util_PublishKotlinDslPlugin"
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

                }
            }
    
            val enableTriggers = VersionedSettingsBranch.fromDslContext().isMainBranch
            triggers {
                vcs {
                    branchFilter = "+:master"
                    enabled = enableTriggers
                }
                schedule {
                    schedulingPolicy =
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 29 08:57:18 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt

        init {
            id("Promotion_MergeReleaseIntoMaster")
            name = "Merge Release into Master"
            description = "Merge Release into Master"
    
            val vcsBranch = VersionedSettingsBranch.fromDslContext()
    
            steps {
                gradleWrapper {
                    name = "Merge Release into Master"
                    tasks =
                        listOf(
                            "updateReleaseVersionsOnMaster",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 10 10:38:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top