Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PerformanceTest (1.82 sec)

  1. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

    import model.PerformanceTestType
    import model.Stage
    
    class PerformanceTest(
        model: CIBuildModel,
        stage: Stage,
        performanceTestBuildSpec: PerformanceTestBuildSpec,
        description: String,
        performanceSubProject: String,
        val testProjects: List<String>,
        val bucketIndex: Int,
        extraParameters: String = "",
        performanceTestTaskSuffix: String = "PerformanceTest",
        preBuildSteps: BuildSteps.() -> Unit = {},
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                        }
                    }
                    performanceTestProject.performanceTests.forEachIndexed { index, performanceTest ->
                        if (performanceTest.testProjects.isNotEmpty()) {
                            artifacts(performanceTest.id!!) {
                                id = "ARTIFACT_DEPENDENCY_${performanceTest.id!!}"
                                cleanDestination = true
                                val perfResultArtifactRule =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        description: String,
        tests: Map<String, List<Scenario>>,
    ): PerformanceTest {
        val descriptionWithMaybeBucketIndex =
            if (performanceTestCoverage.type == PerformanceTestType.FLAKINESS_DETECTION) {
                "$description - index $bucketIndex"
            } else {
                description
            }
        return PerformanceTest(
            model,
            stage,
            performanceTestCoverage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    import configurations.PerformanceTest
    import jetbrains.buildServer.configs.kotlin.Project
    import model.CIBuildModel
    import model.PerformanceTestBucketProvider
    import model.PerformanceTestCoverage
    import model.PerformanceTestProjectSpec
    import model.Stage
    
    abstract class PerformanceTestProject(
        model: CIBuildModel,
        val spec: PerformanceTestProjectSpec,
        val performanceTests: List<PerformanceTest>,
    ) : Project({
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

            model: CIBuildModel,
            stage: Stage,
            flameGraphGenerationBuildSpec: FlameGraphGeneration.FlameGraphGenerationBuildSpec,
            bucketIndex: Int,
        ): PerformanceTest =
            flameGraphGenerationBuildSpec.run {
                PerformanceTest(
                    model,
                    stage,
                    flameGraphGenerationBuildSpec,
                    description =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

        artifactRules =
            """
            build/report-*-performance-tests.zip => .
            build/report-*-performance.zip => $HIDDEN_ARTIFACT_DESTINATION
            build/report-*PerformanceTest.zip => $HIDDEN_ARTIFACT_DESTINATION
            """.trimIndent()
        detectHangingBuilds = false
        requirements {
            requiresNotEc2Agent()
            requiresNotSharedHost()
        }
        params {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

            model: CIBuildModel,
            bucket: String,
        ) = "${asConfigurationId(model)}$bucket"
    
        override fun asConfigurationId(model: CIBuildModel) = "${model.projectId}_${oldUuid ?: "PerformanceTest$uuid"}"
    
        override fun asName(): String = "${type.displayName} - ${os.asName()}"
    
        override fun channel() = "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top