Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 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)
Back to top