Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for extraParameters (0.08 sec)

  1. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 12:22:32 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

                "myParam, false, '--no-daemon'",
                "''     , false, '--no-daemon'",
            ],
        )
        fun `can apply defaults to linux test configurations`(extraParameters: String) {
            applyTestDefaults(buildModel, buildType, "myTask", extraParameters = extraParameters)
    
            assertEquals(
                listOf(
                    "EC2_BUILD_CUSTOMIZATIONS",
                    "KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt

        extraParameters: String = "",
    ) : BasePublishGradleDistribution(promotedBranch, prepTask, triggerName, gitUserName, gitUserEmail, extraParameters) {
        init {
            steps {
                if (prepTask != null) {
                    buildStep(extraParameters, gitUserName, gitUserEmail, triggerName, prepTask, "uploadAll")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

        val promotedBranch: String,
        val prepTask: String?,
        val triggerName: String,
        val gitUserName: String = "bot-teamcity",
        val gitUserEmail: String = "******@****.***",
        val extraParameters: String = "",
        cleanCheckout: Boolean = true,
    ) : BasePromotionBuildType(cleanCheckout) {
        init {
            setArtifactRules(
                """
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                                tasks = ""
                                workingDir = os.perfTestWorkingDir
    
                                val typeExtraParameters = if (type.extraParameters.isEmpty()) "" else " ${type.extraParameters}"
    
                                gradleParams =
                                    (
                                        performanceTestCommandLine(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 6K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        os: Os = Os.LINUX,
        arch: Arch = Arch.AMD64,
        extraParameters: String = "",
        maxParallelForks: String = "%maxParallelForks%",
    ) {
        killProcessStep(KILL_ALL_GRADLE_PROCESSES, os, arch, executionMode = ExecutionMode.RUN_ONLY_ON_FAILURE)
        cleanUpGitUntrackedFilesAndDirectories()
        gradleRunnerStep(model, gradleTasks, os, arch, extraParameters, maxParallelForks = maxParallelForks, isRetry = true)
    }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

    fun performanceTestCommandLine(
        task: String,
        baselines: String,
        extraParameters: String = "",
        os: Os = Os.LINUX,
        arch: Arch = Arch.AMD64,
        testJavaVersion: String = os.perfTestJavaVersion.major.toString(),
        testJavaVendor: String = os.perfTestJavaVendor.name.lowercase(),
    ) = listOf(
        "$task${if (extraParameters.isEmpty()) "" else " $extraParameters"}",
        "-PperformanceBaselines=$baselines",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        description: String,
        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)
  9. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
                        buildScanTagParam("SmokeIdeTests"),
                        "-PflakyTests=$flakyTestStrategy",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/CheckLinks.kt

            name = "CheckLinks"
            description = "Check links in documentations"
    
            applyDefaults(
                model,
                this,
                ":docs:checkLinks",
                extraParameters =
                    listOf(
                        buildScanTagParam("CheckLinks"),
                        "-Dorg.gradle.java.installations.auto-download=false",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Aug 26 11:35:04 UTC 2025
    - 799 bytes
    - Viewed (0)
Back to top