- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for buildTypeId (4.17 sec)
-
.teamcity/settings.kts
import projects.GradleBuildToolRootProject version = "2025.07" /* Master (buildTypeId: Gradle_Master) |----- Check (buildTypeId: Gradle_Master_Check) | |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux) | |---- QuickFeedback | |---- ... | |---- ReadyForRelease | |----- Promotion (buildTypeId: Gradle_Master_Promotion) | |----- Nightly Snapshot | |----- ...
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Aug 14 07:58:26 UTC 2025 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SanityCheck.kt
import model.CIBuildModel import model.Stage class SanityCheck( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Sanity Check" description = "Static code analysis, checkstyle, release notes verification, etc." features { publishBuildStatusToGithub(model) }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 1.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CompileAll.kt
platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties """ }) { companion object { fun buildTypeId(model: CIBuildModel) = buildTypeId(model.projectId) fun buildTypeId(projectId: String) = "${projectId}_CompileAllBuild" }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 1.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/BuildLogicTest.kt
import model.CIBuildModel import model.Stage class BuildLogicTest( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Build-logic test" description = "Run :build-logic:test" features { publishBuildStatusToGithub(model) } applyDefaults( model,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 1.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
"-s", "%additional.gradle.parameters%", if (isContinue) "--continue" else "", ) fun Dependencies.dependsOn(buildTypeId: RelativeId) { dependency(buildTypeId) { snapshot { onDependencyFailure = FailureAction.FAIL_TO_START onDependencyCancel = FailureAction.FAIL_TO_START } } }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0)