Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CompileAll (0.34 sec)

  1. .teamcity/src/main/kotlin/configurations/CompileAll.kt

    package configurations
    
    import common.Os
    import common.buildScanTagParam
    import common.getBuildScanCustomValueParam
    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"
            description = "Compiles all production/test source code and warms up the build cache"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. .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)
  3. .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,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. .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)
  5. .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 Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  6. .github/workflows/contributor-pr.yml

                }
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
            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@v4
            if: always()
            with:
              name: build-receipt.properties
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Sep 04 22:13:34 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top