- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for CompileAll (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.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"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 1.4K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts
fun Project.isExpectedAsciidoctorCacheMiss() = // Expected cache-miss for asciidoctor task: // 1. CompileAll is the seed build for docs:distDocs // 2. BuildDistributions is the seed build for other asciidoctor tasks // 3. buildScanPerformance test, which doesn't depend on compileAll // 4. buildScanPerformance test, which doesn't depend on compileAll isInBuild( "Check_CompileAllBuild", "Check_BuildDistributions",
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 20:57:49 GMT 2025 - 4.8K bytes - Click Count (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,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Nov 05 13:00:26 GMT 2025 - 27.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/RerunFlakyTest.kt
import common.compileAllDependency import common.functionalTestExtraParameters import common.functionalTestParameters import common.gradleWrapper import common.killProcessStep 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,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Feb 19 08:02:04 GMT 2025 - 5.1K bytes - Click Count (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,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 15.6K bytes - Click Count (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)) } }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 20 07:29:52 GMT 2025 - 8.6K bytes - Click Count (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.propertiesCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Sun Dec 14 14:03:48 GMT 2025 - 5K bytes - Click Count (0)