Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for Stage (0.01 sec)

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

            performanceTests =
                stage.performanceTests.map { createPerformanceTests(model, performanceTestBucketProvider, stage, it) } +
                stage.flameGraphs.map { createFlameGraphs(model, stage, it) }
    
            val (topLevelCoverage, allCoverage) = stage.functionalTests.partition { it.testType == TestType.SOAK }
            val topLevelFunctionalTests =
                topLevelCoverage
    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/configurations/SanityCheck.kt

    package configurations
    
    import common.Os
    import common.buildScanTagParam
    import common.getBuildScanCustomValueParam
    import model.CIBuildModel
    import model.Stage
    
    class SanityCheck(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
            id(buildTypeId(model))
            name = "Sanity Check"
            description = "Static code analysis, checkstyle, release notes verification, etc."
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

    import common.buildScanTagParam
    import common.getBuildScanCustomValueParam
    import common.setArtifactRules
    import model.CIBuildModel
    import model.Stage
    
    class BuildDistributions(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = LINUX, stage = stage, init = {
            id("${model.projectId}_BuildDistributions")
            name = "Build Distributions"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        override fun createPerformanceTestsFor(
            model: CIBuildModel,
            stage: Stage,
            performanceTestCoverage: PerformanceTestCoverage,
            bucketIndex: Int,
        ): PerformanceTest =
            createPerformanceTest(
                model,
                performanceTestCoverage,
                stage,
                bucketIndex,
                "Performance tests for $testProject",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        val testCoverage: TestCoverage,
        stage: Stage,
        parallelizationMethod: ParallelizationMethod = ParallelizationMethod.None,
        subprojects: List<String> = listOf(),
        extraParameters: String = "",
        extraBuildSteps: BuildSteps.() -> Unit = {},
        preBuildSteps: BuildSteps.() -> Unit = {},
    ) : OsAwareBaseGradleBuildType(os = testCoverage.os, stage = stage, init = {
            this.name = name
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

    import common.toCapitalized
    import model.CIBuildModel
    import model.Stage
    
    class SmokeTests(
        model: CIBuildModel,
        stage: Stage,
        testJava: JvmCategory,
        id: String,
        task: String = "smokeTest",
        splitNumber: Int = 1,
        flakyTestStrategy: FlakyTestStrategy,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/projects/CheckProject.kt

                )
            }
    
            var prevStage: Stage? = null
            val previousPerformanceTestPasses: MutableList<PerformanceTestsPass> = mutableListOf()
            val previousCrossVersionTests: MutableList<BaseGradleBuildType> = mutableListOf()
            model.stages.forEach { stage ->
                if (isSecurityFork() && stage.stageName > StageName.READY_FOR_RELEASE) {
                    return@forEach
                }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.9K bytes
    - Viewed (1)
  8. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

    import common.getBuildScanCustomValueParam
    import common.requiresNotEc2Agent
    import model.CIBuildModel
    import model.Stage
    
    class SmokeIdeTests(
        model: CIBuildModel,
        stage: Stage,
        flakyTestStrategy: FlakyTestStrategy,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
            val suffix = if (flakyTestStrategy == FlakyTestStrategy.ONLY)"_FlakyTestQuarantine" else ""
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

        model: CIBuildModel,
        performanceTestBucketProvider: PerformanceTestBucketProvider,
        stage: Stage,
        performanceTestCoverage: PerformanceTestCoverage,
    ) : PerformanceTestProject(
            model,
            performanceTestCoverage,
            performanceTestBucketProvider.createPerformanceTestsFor(stage, performanceTestCoverage),
        )
    
    class ManuallySplitPerformanceTestProject(
        model: CIBuildModel,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/BuildScanUtils.kt

    // where X, Y, Z are all the stages including current stage
    // For example, for the stage PullRequestFeedback, the custom value will be "PartOf=PullRequestFeedback,ReadyForNightly,ReadyForRelease"
    private fun Stage.getBuildScanCustomValues(): List<String> =
        StageName
            .values()
            .slice(this.stageName.ordinal until StageName.READY_FOR_RELEASE.ordinal + 1)
            .map { it.uuid }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 10 05:45:46 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top