Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PerformanceTest (0.18 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 = {}
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    package projects
    
    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({
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                    ).joinToString(" "),
                performanceTest.getGradleStep("GRADLE_RUNNER").gradleParams!!.trim()
            )
            assertEquals(BuildStep.ExecutionMode.DEFAULT, performanceTest.getGradleStep("GRADLE_RUNNER").executionMode)
        }
    
        @Test
        fun `create correct PerformanceTest build type for Windows`() {
            val performanceTest = PerformanceTest(
                buildModel,
                Stage(
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        val descriptionWithMaybeBucketIndex = if (performanceTestCoverage.type == PerformanceTestType.flakinessDetection)
            "$description - index $bucketIndex"
        else
            description
        return PerformanceTest(
            model,
            stage,
            performanceTestCoverage,
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  5. .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
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/projects/StageProject.kt

        }
    
        private
        fun createFlameGraphBuild(model: CIBuildModel, stage: Stage, flameGraphGenerationBuildSpec: FlameGraphGeneration.FlameGraphGenerationBuildSpec, bucketIndex: Int): PerformanceTest = flameGraphGenerationBuildSpec.run {
            PerformanceTest(
                model,
                stage,
                flameGraphGenerationBuildSpec,
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        artifactRules = """
            build/report-*-performance-tests.zip => .
            build/report-*-performance.zip => $hiddenArtifactDestination
            build/report-*PerformanceTest.zip => $hiddenArtifactDestination
        """.trimIndent()
        detectHangingBuilds = false
        requirements {
            requiresNotEc2Agent()
            requiresNotSharedHost()
        }
        params {
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val MAX_TEST_DISTRIBUTION_LOCAL_EXECUTORS = "maxTestDistributionLocalExecutors"
        const val PERFORMANCE_BASELINES = "performanceBaselines"
        const val PERFORMANCE_TEST_VERBOSE = "performanceTest.verbose"
        const val PERFORMANCE_DB_PASSWORD = "org.gradle.performance.db.password"
        const val PERFORMANCE_DB_PASSWORD_ENV = "PERFORMANCE_DB_PASSWORD_TCAGENT"
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
Back to top