Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompileAll (0.88 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        DAILY,
        WEEKLY,
    }
    
    const val GRADLE_BUILD_SMOKE_TEST_NAME = "gradleBuildSmokeTest"
    
    enum class SpecificBuild {
        CompileAll {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
            ): OsAwareBaseGradleBuildType = CompileAll(model, stage)
        },
        SanityCheck {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            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 {
                doesNotEqual("skip.build", "true")
            }
        }
    }
    
    fun buildToolGradleParameters(
        isContinue: Boolean = true,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top