- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for CompileAll (0.05 sec)
-
.teamcity/src/main/kotlin/configurations/CompileAll.kt
package configurations import common.Os import common.buildScanTagParam import common.getBuildScanCustomValueParam import common.setArtifactRules import model.CIBuildModel import model.Stage class CompileAll( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Compile All"Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 1.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} const val GRADLE_BUILD_SMOKE_TEST_NAME = "gradleBuildSmokeTest" enum class SpecificBuild { CompileAll { override fun create( model: CIBuildModel, stage: Stage, flakyTestStrategy: FlakyTestStrategy, ): OsAwareBaseGradleBuildType = CompileAll(model, stage) }, SanityCheck { override fun create( model: CIBuildModel,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 05 13:00:26 UTC 2025 - 27.5K bytes - Viewed (0) -
.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 Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 15.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
applyDefaultDependencies(model, buildType) } fun applyDefaultDependencies( model: CIBuildModel, buildType: BuildType, ) { if (buildType !is CompileAll) { buildType.dependencies { compileAllDependency(CompileAll.buildTypeId(model)) } }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 20 07:29:52 UTC 2025 - 8.6K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
} - name: Setup Gradle uses: gradle/actions/setup-gradle@v5 with: cache-read-only: ${{ github.ref != 'refs/heads/master' }} - run: ./gradlew compileAll -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }} - uses: actions/upload-artifact@v6 if: always() with: name: build-receipt.propertiesRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sun Dec 14 14:03:48 UTC 2025 - 5K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
project.dependencies.platform(project.dependencies.create(project(":distributions-dependencies"))) }) } } fun addCompileAllTasks() { tasks.register("compileAll") { description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc." val compileTasks = project.tasks.matching {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0)