Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testProject (0.07 sec)

  1. .teamcity/performance-tests-ci.json

          }
        }, {
          "testProject" : "bigCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigNative",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppApp",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppAppWithMacroIncludes",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                    (scenarioDurations["durations"] as List<Map<String, Any>>).flatMap { duration ->
                        val testProject = duration["testProject"] as String
                        duration.entries
                            .filter { (key, _) -> key != "testProject" }
                            .map { (osString, timeInMs) ->
                                val os = Os.valueOf(osString.uppercase(Locale.US))
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

        "linux" : 480
      }, {
        "testProject" : "mediumCppMultiWithMacroIncludes",
        "linux" : 479
      }, {
        "testProject" : "mediumNative",
        "linux" : 265
      }, {
        "testProject" : "multiNative",
        "linux" : 1801
      }, {
        "testProject" : "smallCppApp",
        "linux" : 326
      }, {
        "testProject" : "smallCppMulti",
        "linux" : 335
      }, {
        "testProject" : "smallNative",
        "linux" : 325
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Sep 08 06:58:31 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/StageProject.kt

                    testProjects = listOf(performanceScenario.testProject),
                    performanceTestTaskSuffix = "PerformanceAdHocTest",
                )
            }
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

    class TestPerformanceTest(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage, init = {
            val os = Os.LINUX
            val buildTypeThis = this
            val testProject = "smallJavaMultiProject"
    
            fun BuildSteps.gradleStep(tasks: List<String>) {
                gradleWrapper {
                    name = "GRADLE_RUNNER"
                    gradleParams =
                        (
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    allowEmpty = true,
                    description = "The baselines you want to run performance tests against. Empty means default baseline.",
                )
                text(
                    "testProject",
                    "",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false,
                    description = "The test project to use. E.g. largeJavaMultiProject",
                )
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

    testing/$performanceProjectName/build/performance-test-results.zip
    """
                if (performanceTestProject.performanceTests.any { it.testProjects.isNotEmpty() }) {
                    val dependencyBuildIds =
                        performanceTestProject.performanceTests
                            .filter { it.testProjects.isNotEmpty() }
                            .joinToString(",") { "%dep.${it.id}.env.BUILD_ID%" }
    
                    val dependencyBaselines =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                applyDefaultDependencies(model, this)
            },
        )
    
    fun getPerformanceTestTaskNames(
        performanceSubProject: String,
        testProjects: List<String>,
        performanceTestTaskSuffix: String,
    ): List<String> =
        testProjects.map {
            ":$performanceSubProject:$it$performanceTestTaskSuffix"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top