Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for applyDefaults (0.12 sec)

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

    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, failStage = false, init = {
            id("${model.projectId}_CheckLinks")
            name = "CheckLinks"
            description = "Check links in documentations"
    
            applyDefaults(
                model,
                this,
                ":docs:checkLinks",
                extraParameters =
                    listOf(
                        buildScanTagParam("CheckLinks"),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Aug 26 11:35:04 UTC 2025
    - 799 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

            name = "Sanity Check"
            description = "Static code analysis, checkstyle, release notes verification, etc."
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                "sanityCheck",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            id("${model.projectId}_BuildDistributions")
            name = "Build Distributions"
            description = "Creation and verification of the distribution and documentation"
    
            applyDefaults(
                model,
                this,
                "packageBuild",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/BuildLogicTest.kt

            id(buildTypeId(model))
            name = "Build-logic test"
            description = "Run :build-logic:test"
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                ":build-logic:test -PskipBuildLogicTests=false",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/CompileAll.kt

            name = "Compile All"
            description = "Compiles all production/test source code and warms up the build cache"
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                "compileAllBuild -PignoreIncomingBuildReceipt=true -DdisableLocalCache=true",
                extraParameters =
                    listOf(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                    tasks = "updateDaemonJvm --jvm-version=${buildJvm.version.major}"
                    gradleParams = defaultParameters
                }
            }
    
            applyDefaults(
                model,
                this,
                ":distributions-full:install",
                extraParameters =
                    (
                        listOf(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu May 01 14:55:05 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

                        echo "##teamcity[addBuildTag 'BuildRetrySuccess']"
                        """.trimIndent()
                }
            }
        }
    }
    
    fun applyDefaults(
        model: CIBuildModel,
        buildType: BaseGradleBuildType,
        gradleTasks: String,
        os: Os = Os.LINUX,
        arch: Arch = Arch.AMD64,
        extraParameters: String = "",
        timeout: Int = 90,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top