Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for extraParameters (0.07 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt

            steps {
                buildStep(
                    this@PublishNightlySnapshotFromQuickFeedbackStepUpload.extraParameters,
                    ******@****.***rName,
                    ******@****.***rEmail,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

            steps {
                buildStep(
                    this@PublishNightlySnapshotFromQuickFeedbackStepPromote.extraParameters,
                    ******@****.***rName,
                    ******@****.***rEmail,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            defaultBaselines = "flakiness-detection-commit",
            channel = "flakiness-detection",
            extraParameters = "--checks none --rerun --cross-version-only",
        ),
        AD_HOC(
            displayName = "AdHoc Performance Test",
            timeout = 30,
            channel = "adhoc",
            extraParameters = "--checks none",
        ),
    }
    
    enum class Trigger {
        NEVER,
        EACH_COMMIT,
        DAILY,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                            }.let { "%dep.${it.id}.performance.baselines%" }
    
                    gradleRunnerStep(
                        model,
                        ":$performanceProjectName:$taskName",
                        extraParameters =
                            listOf(
                                "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
                                "-Porg.gradle.performance.db.url" to "%performance.db.url%",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                            "on ${os.asName()} (bucket $bucketIndex)",
                    performanceSubProject = "performance",
                    bucketIndex = bucketIndex,
                    extraParameters =
                        "--profiler $profiler --tests \"${performanceScenario.scenario.className}.${performanceScenario.scenario.scenario}\"",
                    testProjects = listOf(performanceScenario.testProject),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 00:34:25 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                "${testCoverage.asName()} for gradle ($startInclusive <= gradle <$endExclusive)",
                testCoverage,
                stage,
                parallelizationMethod,
                emptyList(),
                extraParameters = "-PonlyTestGradleVersion=$startInclusive-$endExclusive",
            )
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Sep 24 08:38:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/CommonExtensions.kt

        ) + os.javaInstallationLocations(arch)
    
    fun promotionBuildParameters(
        dependencyBuildId: RelativeId,
        extraParameters: String,
        gitUserName: String,
        gitUserEmail: String,
    ): String =
        listOf(
            "-PcommitId=%dep.$dependencyBuildId.build.vcs.number%",
            extraParameters,
            "\"-PgitUserName=$gitUserName\"",
            "\"-PgitUserEmail=$gitUserEmail\"",
            PLUGINS_PORTAL_URL_OVERRIDE,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                    gradleParams = defaultParameters
                }
            }
    
            applyDefaults(
                model,
                this,
                ":distributions-full:install",
                extraParameters =
                    (
                        listOf(
                            stage.getBuildScanCustomValueParam(),
                            "-Pgradle_installPath=dogfood-first-for-hash",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            description = descriptionWithMaybeBucketIndex,
            performanceSubProject = "performance",
            testProjects = tests.keys.toList(),
            bucketIndex = bucketIndex,
            extraParameters = "-PincludePerformanceTestScenarios=true",
        ) {
            tests.forEach { (testProject, scenarios) ->
                prepareScenariosStep(testProject, scenarios, performanceTestCoverage.os)()
            }
        }
    }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top