- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for buildType (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.teamcity/src/main/kotlin/projects/StageProject.kt
} if (smokeBuildTypes.isNotEmpty()) { subProject(SmokeTestProject(model, stage, smokeBuildTypes.map { it.second })) } nonSmokeBuildTypes.forEach { (_, buildType) -> buildType(buildType) } performanceTests = stage.performanceTests.map { createPerformanceTests(model, performanceTestBucketProvider, stage, it) } +Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 12.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PromotionProject.kt
cleanupRule(historyDays = 14, artifactsDays = 7) buildType(SanityCheck) buildType(PublishNightlySnapshot(branch)) buildType(PublishNightlySnapshotFromQuickFeedback(branch)) buildType(PublishNightlySnapshotFromQuickFeedbackStepCheckReady(branch)) buildType(PublishNightlySnapshotFromQuickFeedbackStepUpload(branch)) buildType(PublishNightlySnapshotFromQuickFeedbackStepPromote(branch))Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 15 19:30:24 GMT 2026 - 3.1K bytes - Click Count (0) -
.teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 05:03:56 GMT 2026 - 7.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/UtilProject.kt
object UtilProject : Project({ id("Util") name = "Util" buildType(RerunFlakyTest(Os.LINUX)) buildType(RerunFlakyTest(Os.WINDOWS)) buildType(RerunFlakyTest(Os.MACOS, Arch.AMD64)) buildType(RerunFlakyTest(Os.MACOS, Arch.AARCH64)) buildType(WarmupEc2Agent) buildType(DownloadGitRepoToEc2Agent) buildType(UpdateWrapper) buildType(PublishKotlinDslPlugin) params {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Nov 12 06:13:12 GMT 2025 - 639 bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
} skipConditionally(buildType) } } fun BuildStep.onlyRunOnGitHubMergeQueueBranch() { conditions { matches("teamcity.build.branch", "gh-readonly-queue/.*") } } fun BuildStep.skipConditionally(buildType: BuildType? = null) { // we need to run CompileALl unconditionally because of artifact dependency if (buildType !is CompileAll) { conditions {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 05:03:56 GMT 2026 - 14.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
buildType.killProcessStep(KILL_PROCESSES_STARTED_BY_GRADLE, os, arch, executionMode = ExecutionMode.ALWAYS) buildType.steps { extraSteps() checkCleanM2AndAndroidUserHome(os, buildType) } applyDefaultDependencies(model, buildType) } fun applyDefaultDependencies( model: CIBuildModel, buildType: BuildType, ) { if (buildType !is CompileAll) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 05:03:56 GMT 2026 - 8.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/DownloadGitRepoToEc2Agent.kt
package configurations import common.applyDefaultSettings import jetbrains.buildServer.configs.kotlin.BuildStep import jetbrains.buildServer.configs.kotlin.BuildType import jetbrains.buildServer.configs.kotlin.buildSteps.script object DownloadGitRepoToEc2Agent : BuildType({ val id = "Util_DownloadGitRepoToEc2Agent" name = "Download Git Repo to EC2 Agent" description = "Do nothing but downloading gradle/gradle repo to EC2 agents"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Nov 12 06:13:12 GMT 2025 - 758 bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
fun <T : BaseGradleBuildType> Dependencies.snapshotDependencies( buildTypes: Iterable<T>, snapshotConfig: SnapshotDependency.(T) -> Unit = {}, ) { buildTypes.forEach { buildType -> dependency(buildType.id!!) { snapshot { if (!buildType.failStage) { onDependencyFailure = FailureAction.IGNORE
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Feb 06 13:13:53 GMT 2026 - 7.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jan 07 10:42:35 GMT 2026 - 5.6K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/BaseGradleBuildType.kt
package configurations import common.Os import jetbrains.buildServer.configs.kotlin.BuildType import model.Stage open class BaseGradleBuildType( open val stage: Stage? = null, open val failStage: Boolean = true, init: BaseGradleBuildType.() -> Unit = {}, ) : BuildType() { init { this.init() } } open class OsAwareBaseGradleBuildType( val os: Os, override val stage: Stage? = null,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jan 07 10:42:35 GMT 2026 - 602 bytes - Click Count (0)