- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for buildType (0.08 seconds)
-
.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/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/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/projects/SmokeTestProject.kt
name = "Smoke Test" description = "Smoke tests against third-party plugins, Gradle build, and IDE sync" }) { init { smokeBuildTypes.forEach(this::buildType) } companion object { /** * Specific builds shown under the "Smoke Test" subproject in Pull Request Feedback. */ val pullRequestFeedbackSmokeBuilds: Set<SpecificBuild> =
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 1.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt
id(buildTypeId(model) + suffix) name = "Smoke Ide Tests$suffix" description = "Tests against IDE sync process" applyTestDefaults( model = model, buildType = this, gradleTasks = ":smoke-ide-test:smokeIdeTest", extraParameters = listOf( stage.getBuildScanCustomValueParam(),
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 1.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt
import common.requiresOs import jetbrains.buildServer.configs.kotlin.AbsoluteId import jetbrains.buildServer.configs.kotlin.BuildType import jetbrains.buildServer.configs.kotlin.CheckoutMode abstract class BasePromotionBuildType( cleanCheckout: Boolean = true, ) : BuildType() { init { vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId()))
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 2.2K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt
import common.setArtifactRules import common.substDirOnWindows import jetbrains.buildServer.configs.kotlin.BuildType import jetbrains.buildServer.configs.kotlin.ParameterDisplay import jetbrains.buildServer.configs.kotlin.ParametrizedWithType abstract class AdHocPerformanceScenario( os: Os, arch: Arch = Arch.AMD64, ) : BuildType({ val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 14:08:32 GMT 2026 - 6K bytes - Click Count (0)