Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for buildType (0.04 sec)

  1. .teamcity/src/main/kotlin/projects/StageProject.kt

                    subProject(flakyTestQuarantineProject)
                    buildType(flakyTestQuarantineProjectTrigger)
                }
            }
    
            stage.performanceTestPartialTriggers.forEach { trigger ->
                buildType(
                    PartialTrigger(
                        trigger.triggerName,
                        trigger.triggerId,
                        model,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 00:34:25 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/CommonExtensions.kt

                }
            skipConditionally(buildType)
        }
    }
    
    fun BuildStep.onlyRunOnGitHubMergeQueueBranch() {
        conditions {
            matches("teamcity.build.branch", "gh-readonly-queue/.*")
        }
    }
    
    fun BuildStep.skipConditionally(buildType: BuildType? = null) {
        // we need to run CompileALl unconditionally because of artifact dependency
        if (buildType !is CompileAll) {
            conditions {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PromotionProjectTests.kt

                    "Start Release Cycle Test",
                ),
                model.buildTypes.map { it.name },
            )
        }
    
        @Test
        fun `promotion project has expected build types for other branches`() {
            val model = setupModelFor("release")
    
            assertEquals("Promotion", model.name)
            assertEquals(12, model.buildTypes.size)
            assertEquals(
                listOf(
                    "SanityCheck",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jun 12 09:41:54 UTC 2025
    - 15.3K bytes
    - Viewed (1)
  4. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            // +1 for the GitHubMergeQueueCheckPass
            // +8 for OS triggers
            assertEquals(rootProject.buildTypes.size, model.stages.size + 1 + stageWithOsTriggers.values.sumOf { it.size })
        }
    
        @Test
        fun configurationsHaveDependencies() {
            val stagePassConfigs = rootProject.buildTypes.filter { it is StageTrigger && it.name.endsWith("(Trigger)") }
            assertEquals(model.stages.size, stagePassConfigs.size)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top