Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for buildType (0.09 sec)

  1. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

        val performanceTests: List<PerformanceTest>,
    ) : Project({
            this.id(spec.asConfigurationId(model))
            this.name = spec.asName()
        }) {
        init {
            performanceTests.forEach(this::buildType)
        }
    }
    
    class AutomaticallySplitPerformanceTestProject(
        model: CIBuildModel,
        performanceTestBucketProvider: PerformanceTestBucketProvider,
        stage: Stage,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt

                    useGradleWrapper = true
                }
            }
    
            if (vcsBranch.isRelease) {
                triggers {
                    finishBuildTrigger {
                        buildType =
                            "Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}"
                        successfulOnly = true
                        branchFilter = "+:*"
                    }
                }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 10 10:38:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    import configurations.CompileAll
    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    class RerunFlakyTest(
        os: Os,
        arch: Arch = Arch.AMD64,
    ) : BuildType({
            val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
            name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

                // These tests are usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 09 05:26:45 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/DocsTest.kt

            name = "Docs Test - ${testJava.version.toCapitalized()} ${os.asName()}"
        }) {
        val docsTests = testTypes.map { DocsTest(model, stage, os, testJava, it) }
    
        init {
            docsTests.forEach(this::buildType)
        }
    }
    
    class DocsTestTrigger(
        model: CIBuildModel,
        docsTestProject: DocsTestProject,
    ) : OsAwareBaseGradleBuildType(os = docsTestProject.os, init = {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 18 02:29:43 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/PromotionProjectTests.kt

                    "Start Release Cycle Test",
                ),
                model.buildTypes.map { it.name },
            )
        }
    
        @Test
        fun `promotion project has expected build types for other branches`() {
            val model = setupModelFor("release")
    
            assertEquals("Promotion", model.name)
            assertEquals(12, model.buildTypes.size)
            assertEquals(
                listOf(
                    "SanityCheck",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jun 12 09:41:54 UTC 2025
    - 15.3K bytes
    - Viewed (1)
  7. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            // +1 for the GitHubMergeQueueCheckPass
            // +8 for OS triggers
            assertEquals(rootProject.buildTypes.size, model.stages.size + 1 + stageWithOsTriggers.values.sumOf { it.size })
        }
    
        @Test
        fun configurationsHaveDependencies() {
            val stagePassConfigs = rootProject.buildTypes.filter { it is StageTrigger && it.name.endsWith("(Trigger)") }
            assertEquals(model.stages.size, stagePassConfigs.size)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  8. android-test-app/build.gradle.kts

      }
    
      compileOptions {
        targetCompatibility(JavaVersion.VERSION_11)
        sourceCompatibility(JavaVersion.VERSION_11)
      }
    
      kotlinOptions {
        jvmTarget = JavaVersion.VERSION_11.toString()
      }
    
      buildTypes {
        release {
          isShrinkResources = true
          isMinifyEnabled = true
          signingConfig = signingConfigs.getByName("debug")
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Jul 19 12:35:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top