- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for buildTypeId (2.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/SmokeIdeTests.kt
import model.CIBuildModel import model.Stage class SmokeIdeTests( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Smoke Ide Tests" description = "Tests against IDE sync process" requirements { // These tests are usually heavy and the build time is twice on EC2 agents
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 17 07:24:45 UTC 2025 - 1.7K 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) -
.teamcity/src/main/kotlin/util/RerunFlakyTest.kt
description = "Additional options for the test task to run (`-PrerunAllTests` is already added implicitly)", ) } dependencies { compileAllDependency(CompileAll.buildTypeId("Check")) }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 19 08:02:04 UTC 2025 - 5.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
} fun applyDefaultDependencies( model: CIBuildModel, buildType: BuildType, ) { if (buildType !is CompileAll) { buildType.dependencies { compileAllDependency(CompileAll.buildTypeId(model)) } }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Jun 11 12:58:05 UTC 2025 - 8.4K bytes - Viewed (0)